Move and resize a spiral or multiplanar instance to fit within a specified box.
The arguments are interpreted as an arbitrary rectangle in 3D with
vertices: origin, origin+xVec, origin+xVec+yVec, origin+yVec. One end of the
rebar shape is inscribed in this rectangle following the procedure described
for the ScaleToBox method. The other end is placed in the parallel plane at
distance (center-to-center) given by the height argument, in the
direction of (xVec x yVec).
Note that spiral shapes interpret the input arguments using a different convention
than multiplanar shapes. For spiral shapes, the spiral start will be placed in
the rectangle defined by origin, xVec, yVec, and the end of the spiral will be
placed in the parallel plane. For multiplanar shapes, the rebar is placed with
its primary shape definition located in the parallel plane defined by the height
argument, and its connector segments extending in the direction opposite (xVec x yVec).
This method replaces ScaleToBoxForSpiral() from prior releases.
Namespace: Autodesk.Revit.DB.Structure
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since:
2012
Syntax
C# |
---|
public void ScaleToBoxFor3D(
XYZ origin,
XYZ xVec,
XYZ yVec,
double height
) |
Visual Basic |
---|
Public Sub ScaleToBoxFor3D ( _
origin As XYZ, _
xVec As XYZ, _
yVec As XYZ, _
height As Double _
) |
Visual C++ |
---|
public:
void ScaleToBoxFor3D(
XYZ^ origin,
XYZ^ xVec,
XYZ^ yVec,
double height
) |
Exceptions
See Also