Click or drag to resize

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
)

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: Boolean
True if successful, false otherwise.
See Also