Point3D
Overview
Point3D is a class in Aspose.PDF FOSS for .NET.
Represents a point in 3D space (used by 3D annotations).
This class provides 3 methods for working with Point3D objects in .NET programs.
Available methods include: Point3D, ToString.
All public members are accessible to any .NET application after installing the Aspose.PDF FOSS for .NET package.
Properties: Trivial, X, Y, Z.
Properties
| Name | Type | Access | Description |
|---|---|---|---|
X | double | Read/Write | Gets or sets the x. |
Y | double | Read/Write | Gets or sets the y. |
Z | double | Read/Write | Gets or sets the z. |
Trivial | Point3D | Read | Origin point (0, 0, 0). |
Methods
| Signature | Description |
|---|---|
Point3D() | Calls Point3D on this Point3D instance. |
Point3D(x: double, y: double, z: double) | |
ToString() | String form expected by the public API: {X=1.2,Y=-3.4,Z=5.6}. |