I'm experimenting with transforms. And trying to perform and store multiple transforms, but unable to probably due to the static property of transforms. Something like this:
Wall wall = doc.GetElement(id) as Wall;
BoundingBoxXYZ wallBoundingBox = wall.get_BoundingBox(doc.ActiveView);
//Original
Transform originalTransform = wallBoundingBox.Transform;
//Translated
Transform translatedTransform = originalTransform.CreateTranslation(wallBoundingBox.Min);
Error msg: "Member 'Transform.CreateTranslation(XYZ)' cannot be accessed with an instance reference, qualify it with a type name instead."
Are there any workarounds for this?