PlaneExtendThroughBox Method (BoundingBox, Interval, Interval) |
Extends this plane through a bounding box.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public bool ExtendThroughBox(
BoundingBox box,
out Interval s,
out Interval t
)
Public Function ExtendThroughBox (
box As BoundingBox,
<OutAttribute> ByRef s As Interval,
<OutAttribute> ByRef t As Interval
) As Boolean
Parameters
- box
- Type: Rhino.GeometryBoundingBox
A box to use as minimal extension boundary. - s
- Type: Rhino.GeometryInterval
If this function returns true,
the s parameter returns the Interval on the plane along the X direction that will
encompass the Box.
- t
- Type: Rhino.GeometryInterval
If this function returns true,
the t parameter returns the Interval on the plane along the Y direction that will
encompass the Box.
Return Value
Type:
Booleantrue on success, false on failure.
See Also