Plane Class |
The Plane class defines a plane in space using an origin, an X-axis and a Y-axis.
SystemObject
Tekla.Structures.ModelPlane
Tekla.Structures.ModelPlane
Namespace: Tekla.Structures.Model
Assembly: Tekla.Structures.Model (in Tekla.Structures.Model.dll) Version: 2025.0.0-alpha00045580+dc02c3918546f1e94eb2d3b13ea99057fb3313e0
The Plane type exposes the following members.
| Name | Description | |
|---|---|---|
| AxisX |
The X-axis of the plane.
| |
| AxisY |
The Y-axis of the plane.
| |
| Origin |
The origin of the plane.
|
using Tekla.Structures.Model; using Tekla.Structures.Geometry3d; public class Example { public void Example1() { Plane Plane = new Plane(); Plane.Origin = new Point(500, 0, 0); Plane.AxisX = new Vector(500, 1000, 0); Plane.AxisY = new Vector(500, 0, -1000); } }