Get the coordinates of the 3 corners of the trixel desscribed by the given HtmID.

Namespace: Spherical.Htm
Assembly: SphericalHtm (in SphericalHtm.dll) Version: 1.0.0.0

Syntax

C#
public static void ToTriangle(
	long hid,
	out Cartesian a,
	out Cartesian b,
	out Cartesian c
)
Visual C++
public:
static void ToTriangle(
	long long hid, 
	[OutAttribute] Cartesian% a, 
	[OutAttribute] Cartesian% b, 
	[OutAttribute] Cartesian% c
)
F#
static member ToTriangle : 
        hid:int64 * 
        a:Cartesian byref * 
        b:Cartesian byref * 
        c:Cartesian byref -> unit 

Parameters

hid
Type: System..::..Int64
the specified HtmID
a
Type: Spherical..::..Cartesian%
output of first corner
b
Type: Spherical..::..Cartesian%
output of second corner
c
Type: Spherical..::..Cartesian%
output of third corner

See Also