Transform

In some upcoming posts, I would like to take a look at the how to handle transformations of Revit elements, as well as locations of nested linked files. Before we get into that, let us take a closer look at the underlying Revit API Transform class. We briefly mentioned it in the discussion of the Revit API geometry library, and demonstrated some basic use of it for transforming a polygon from 3D to 2D.

The Revit API Transform class is defined in the Autodesk.Revit.Geometry namespace and represents a transformation of the affine 3-space. It provides the typical properties and methods expected for a transformation class:

In some other APIs, transformations are handled by matrices. The Revit API generally tries to address a higher level of abstraction, so the class is defined as a generic transformation class, and the underlying implementation is not explicitly exposed by the API.

The Creation.Application does not provide any methods to create transform objects. A Transform instance can be created using the new operator as a copy constructor, or by using some of the static methods of the Transform class. The transform default constructor initializes it to identity:

Transform trans1, trans2, trans3;

Here are examples of using the static Transform class methods to define rotation, translation, scaling and mirroring transforms:

XYZ ptOrigin = XYZ.Zero;
XYZ ptXAxis = XYZ.BasisX;
XYZ ptYAxis = XYZ.BasisY;
 
trans1 = Transform.get_Rotation( // rotation
  ptOrigin, ptXAxis, 90 );
 
trans2 = Transform.get_Translation( // translation
  ptXAxis );
 
trans1 = trans2.ScaleBasis( 2.0 ); // scaling
 
Plane plane1 = creApp.NewPlane(
  ptXAxis, ptYAxis );
 
trans3 = Transform.get_Reflection( // mirror
  plane1 );

One simple use of a transform is to translate a point:

p3 = trans1.OfPoint( p2 );

Some further examples are given by the Revit API tips and tricks sample code, in the region '1. XYZ and Transform' in RevitGeometry.cs. Besides these transforms, they also show how to invert and concatenate transformations.

The polygon transformation is implemented by code in the region 'Transform 3D plane to horizontal' in The Building Coder sample code external command class CmdWallProfileArea, specifically in the methods GetTransformToZ and ApplyTransform:

Transform GetTransformToZ( XYZ v )
{
  Transform t;
 
  double a = XYZ.BasisZ.Angle( v );
 
  if( Util.IsZero( a ) )
  {
    t = Transform.Identity;
  }
  else
  {
    XYZ axis = Util.IsEqual( a, Math.PI )
      ? XYZ.BasisX
      : v.Cross( XYZ.BasisZ );
 
    t = Transform.get_Rotation( XYZ.Zero,
      axis, a );
  }
  return t;
}
 
List<XYZ> ApplyTransform(
  List<XYZ> polygon,
  Transform t )
{
  int n = polygon.Count;
 
  List<XYZ> polygonTransformed
    = new List<XYZ>( n );
 
  foreach( XYZ p in polygon )
  {
    polygonTransformed.Add( t.OfPoint( p ) );
  }
  return polygonTransformed;
}

GetTransformToZ calculates the rotation required to transform a planar polygon from its arbitrary orientation in 3D space to a plane parallel to the XY plane. The algorithm used is described in detail in the discussion on transforming a polygon. ApplyTransform applies the rotation to the 3D polygon to obtain a rotated copy which is parallel to the XY plane. It does so by iterating through the points of the original polygon and calculating the rotated point using Transform.OfPoint on each.