Camera3D (Object)

Represents a 3D camera.
The 3D camera stores a 3D viewpoint, that is a object.

Properties


Property Viewpoint3D() As
Returns or sets the 3D viewpoint of a 3D camera.
Example:
Assume the active window is a object. This example retrieves the of the active 3D viewer and creates from it a Camera3D you handle using the MyCamera variable. Then the camera zoom is set to 2, and the camera's viewpoint is assigned to the active viewer.
 Dim MyCamera As Camera3D
 Set MyCamera = CATIA.ActiveWindow.ActiveViewer.NewCamera()
 MyCamera.Viewpoint3D.Zoom = 2
 CATIA.ActiveWindow.ActiveViewer.Viewpoint3D = MyCamera.Viewpoint3D