VERSION 5.00 Begin VB.Form Form2 Caption = "Form2" ClientHeight = 3045 ClientLeft = 60 ClientTop = 345 ClientWidth = 8130 LinkTopic = "Form2" ScaleHeight = 3045 ScaleWidth = 8130 StartUpPosition = 3 'Windows Default Begin VB.CommandButton Uscita Caption = "Esci" Height = 495 Left = 3960 TabIndex = 5 Top = 2520 Width = 1935 End Begin VB.VScrollBar Zoom Height = 2055 Left = 6960 Max = 180 TabIndex = 4 Top = 360 Value = 30 Width = 375 End Begin VB.HScrollBar Roll Height = 375 Left = 3480 Max = 180 Min = -180 TabIndex = 3 Top = 1200 Width = 2775 End Begin VB.VScrollBar Dolly Height = 2655 Left = 6360 Max = 300 TabIndex = 2 Top = 360 Value = 50 Width = 375 End Begin VB.VScrollBar OrbitV Height = 2055 Left = 3000 Max = 90 Min = -90 TabIndex = 1 Top = 360 Width = 375 End Begin VB.HScrollBar OrbitH Height = 375 Left = 120 Max = 180 Min = -180 TabIndex = 0 Top = 1200 Width = 2775 End Begin VB.Label Label6 Caption = "Zoom" Height = 255 Left = 6960 TabIndex = 11 Top = 0 Width = 495 End Begin VB.Label Label5 Caption = "Dolly" Height = 255 Left = 6360 TabIndex = 10 Top = 0 Width = 375 End Begin VB.Label Label4 Caption = "Roll" Height = 255 Left = 4560 TabIndex = 9 Top = 840 Width = 615 End Begin VB.Label Label3 Caption = "Y" Height = 255 Left = 3120 TabIndex = 8 Top = 0 Width = 255 End Begin VB.Label Label2 Caption = "X" Height = 255 Left = 1440 TabIndex = 7 Top = 960 Width = 255 End Begin VB.Label Label1 Caption = "Oribt" Height = 255 Left = 1320 TabIndex = 6 Top = 120 Width = 615 End End Attribute VB_Name = "Form2" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Uscita_Click() End End Sub Private Sub OrbitH_Change() Form1.CameraHor = OrbitH.Value End Sub Private Sub Roll_Change() Form1.CameraRoll = Roll.Value End Sub Private Sub OrbitV_Change() Form1.CameraVer = OrbitV.Value End Sub Private Sub Dolly_Change() Form1.CameraDolly = Dolly.Value / 10 End Sub Private Sub Zoom_Change() Form1.CameraZoom = Zoom.Value End Sub