BrepFaceDraftAnglePoint Method |
Returns the surface draft angle and point at a parameter.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 6.0
Syntax public bool DraftAnglePoint(
Point2d testPoint,
double testAngle,
Vector3d pullDirection,
bool edge,
out Point3d draftPoint,
out double draftAngle
)
Public Function DraftAnglePoint (
testPoint As Point2d,
testAngle As Double,
pullDirection As Vector3d,
edge As Boolean,
<OutAttribute> ByRef draftPoint As Point3d,
<OutAttribute> ByRef draftAngle As Double
) As Boolean
Parameters
- testPoint
- Type: Rhino.GeometryPoint2d
The u,v parameter on the face to evaluate. - testAngle
- Type: SystemDouble
The angle in radians to test. - pullDirection
- Type: Rhino.GeometryVector3d
The pull direction. - edge
- Type: SystemBoolean
Restricts the point placement to an edge. - draftPoint
- Type: Rhino.GeometryPoint3d
The draft angle point. - draftAngle
- Type: SystemDouble
The draft angle in radians.
Return Value
Type:
BooleanTrue if successful, false otherwise.
See Also