Package com.solibri.smc.api.threed
Interface CameraState
- All Known Subinterfaces:
- OrthogonalCameraState,- PerspectiveCameraState
public interface CameraState
CameraState represents the state of 3d camera including location, direction, up direction and projection mode.
 
There are two sub interfaces:
- Since:
- 9.12.0
- 
Method SummaryModifier and TypeMethodDescriptionReturns the direction of the camera as unit vector in 3D space.Returns the location of the camera in 3D space.Returns the up direction of the camera as unit vector in 3D space.
- 
Method Details- 
getLocationVector3d getLocation()Returns the location of the camera in 3D space.- Returns:
- the location
- Since:
- 9.12.0
 
- 
getUpDirectionVector3d getUpDirection()Returns the up direction of the camera as unit vector in 3D space.- Returns:
- the up direction
- Since:
- 9.12.0
 
- 
getDirectionVector3d getDirection()Returns the direction of the camera as unit vector in 3D space.- Returns:
- the direction
- Since:
- 9.12.0
 
 
-