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

NameTypeAccessDescription
XdoubleRead/WriteGets or sets the x.
YdoubleRead/WriteGets or sets the y.
ZdoubleRead/WriteGets or sets the z.
TrivialPoint3DReadOrigin point (0, 0, 0).

Methods

SignatureDescription
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}.

See Also