Parameters
- x
- The value of the x-component.
- y
- The value of the y-component.
- z
- The value of the z-component.
Coordinate3D v = new Coordinate3D(0, 0, 7); double inclination = v.Inclination; // inclination = PI/2 v.SetComponents(-2, -3, 0); inclination = v.Inclination; // inclination = 0 v.SetComponents(0, 0, -2); inclination = v.Inclination; // inclination = -PI/2
Target Platforms: Windows 10, Windows 8.1