Click or drag to resize
SbPlaneProjector Class

Plane projector.

Inheritance Hierarchy
SystemObject
  OIV.InventorSoNetBase
    OIV.Inventor.ProjectorsSbProjector
      OIV.Inventor.ProjectorsSbPlaneProjector

Namespace: OIV.Inventor.Projectors
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public class SbPlaneProjector : SbProjector

The SbPlaneProjector type exposes the following members.

Constructors
  NameDescription
Public methodSbPlaneProjector
Calls SbPlaneProjector(false).
Public methodSbPlaneProjector(Boolean)

Constructor.

Public methodSbPlaneProjector(SbPlane)
Calls SbPlaneProjector(plane, false).
Public methodSbPlaneProjector(SbPlane, Boolean)

Constructor which is passed a plane.

Top
Methods
  NameDescription
Public methodCopy

Creates and returns an exact copy of the projector.

(Inherited from SbProjector.)
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Overrides GetHashCode().
(Inherited from SoNetBase.)
Public methodGetPlane

Gets the plane to use.

Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetVector(SbVec2f)

Gets a vector given the current mouse point.

Public methodGetVector(SbVec2f, SbVec2f)

Gets a vector on this plane given two normalized mouse positions.

Public methodGetViewVolume

Get the view volume to use for the projection.

(Inherited from SbProjector.)
Public methodGetWorkingSpace

Get the transform space to work in.

(Inherited from SbProjector.)
Public methodIntersect

Applies the projector using the given line in world coordinates, returning the point in three dimensions that it projects to.

(Inherited from SbProjector.)
Public methodIsOrientToEye

Gets whether the projector should be oriented towards the eye.

Public methodProject

Apply the projector using the given point, returning the point in three dimensions that it projects to.

(Inherited from SbProjector.)
Public methodSetOrientToEye

Sets whether the projector should be oriented towards the eye.

Public methodSetPlane

Sets the plane to use.

Public methodSetStartPosition(SbVec2f)

Sets the initial mouse position.

Public methodSetStartPosition(SbVec3f)

Sets the initial position from a point on the projector.

Public methodSetViewVolume

Set the view volume to use for the projection.

(Inherited from SbProjector.)
Public methodSetWorkingSpace

Set the transform space to work in.

(Inherited from SbProjector.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

OIV.Inventor.Projectors.SbPlaneProjector projects the mouse onto a plane. This is typically used to write interactive 3D manipulators and viewers.

See Also