Apply |
Method that causes the changes made to the Camera object to be applied to the actual camera of the view. This will also cause the view to update. |
ApplyWithoutTransition |
Method that applies the current camera to the View without transition. |
ComputeWithMouseInput |
Method that changes the view according mouse movement and view operation. |
CreateImage |
Creates an image based on the current camera view. |
CreateImageWithOptions |
Creates an image based on the current camera view with options. |
Fit |
Method that fits all the contents of the Document into the view. |
GetExtents |
Method that gets the current extents of the camera. The camera extents define the area within the model that is visible in the view. |
ModelToViewSpace |
Method that converts a point in model space to the equivalent point on the view. |
SaveAsBitmap |
Method that saves the current camera view to the specified file. The width and height arguments define the aspect ratio and the number of pixels in the output image.
The CreateImage method is similar to this but instead of writing the image to a file it creates it in memory, which is more efficient than writing and reading if from disk if you need to use the image immediately. |
SetExtents |
Method that sets the current extents of the camera. The camera extents define the area within the model that is visible in the view. Setting the extents results in the camera zooming in or out. The Apply method of the camera must be called before any changes are shown in the view. |
ViewToModelSpace |
Method that converts a point in view space to the equivalent point in the model. |