PlaneExtendThroughBox Method (Box, Interval, Interval) |
Extend this plane through a Box.
Namespace:
Rhino.Geometry
Assembly:
RhinoCommon (in RhinoCommon.dll)
Since: 5.0
Syntax public bool ExtendThroughBox(
Box box,
out Interval s,
out Interval t
)
Public Function ExtendThroughBox (
box As Box,
<OutAttribute> ByRef s As Interval,
<OutAttribute> ByRef t As Interval
) As Boolean
Parameters
- box
- Type: Rhino.GeometryBox
A box to use for extension. - 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