SbLineProjectorProject Method (SbVec2f, SbVec3f) |
Applies the projector using the given point, returning the point in three dimensions that it projects to and the status.
Namespace: OIV.Inventor.ProjectorsAssembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2023.1.3.0 (2023.1.3)
Syntax public bool Project(
SbVec2f point,
out SbVec3f projectedPoint
)
Public Function Project (
point As SbVec2f,
<OutAttribute> ByRef projectedPoint As SbVec3f
) As Boolean
public:
bool Project(
SbVec2f point,
[OutAttribute] SbVec3f% projectedPoint
)
member Project :
point : SbVec2f *
projectedPoint : SbVec3f byref -> bool
Parameters
- point
- Type: OIV.InventorSbVec2f
- projectedPoint
- Type: OIV.InventorSbVec3f
Return Value
Type:
BooleanRemarks The point should be normalized from 0-1, with (0,0) at the lower-left.
See Also