ExporterIFCUtils.TransformAndScaleVector Method

ExporterIFCUtilsTransformAndScaleVector Method

Converts a vector from global Revit coordinates to current IFC coordinates, including scale.

Namespace: Autodesk.Revit.DB.IFC
Assembly: RevitAPIIFC (in RevitAPIIFC.dll) Version: 25.3.0.0 (25.3.0.0)
Syntax
public static XYZ TransformAndScaleVector(
	ExporterIFC exporterIFC,
	XYZ origVector
)
Public Shared Function TransformAndScaleVector ( 
	exporterIFC As ExporterIFC,
	origVector As XYZ
) As XYZ
public:
static XYZ^ TransformAndScaleVector(
	ExporterIFC^ exporterIFC, 
	XYZ^ origVector
)
static member TransformAndScaleVector : 
        exporterIFC : ExporterIFC * 
        origVector : XYZ -> XYZ 

Parameters

exporterIFC  ExporterIFC
The exporter.
origVector  XYZ
The original vector.

Return Value

XYZ
The transformed and scaled point.
Exceptions
ExceptionCondition
ArgumentNullException A non-optional argument was null
See Also