void pltnrm_c ( ConstSpiceDouble v1[3],
ConstSpiceDouble v2[3],
ConstSpiceDouble v3[3],
SpiceDouble normal[3] )
Compute an outward normal vector of a triangular plate.
The vector does not necessarily have unit length.
DSK
DSK
FILES
TOPOGRAPHY
Variable I/O Description
-------- --- --------------------------------------------------
v1,
v2,
v3 I Vertices of a plate.
normal O Plate's outward normal vector.
v1,
v2,
v3 are vertices of a triangular plate.
normal is an outward normal vector of the plate defined by
the input vertices. The order of the vertices is
used to determine the choice of normal direction:
the normal vector is
( V2 - V1 ) x ( V3 - V2 )
None.
1) The input plate may be degenerate: it may be a line segment
or a point. These are not considered to be erroneous inputs.
None.
This routine saves computation time by not scaling the output
vector to unit length. The caller can scale the vector using
the routine vhat_c.
1) Compute an upward normal of an equilateral triangle lying
in the X-Y plane and centered at the origin.
Example code begins here.
#include <stdio.h>
#include <math.h>
#include "SpiceUsr.h"
int main()
{
./
Local variables
./
SpiceDouble normal[3];
SpiceDouble s;
SpiceDouble v1[3];
SpiceDouble v2[3];
SpiceDouble v3[3];
s = sqrt(3.0)/2;
vpack_c ( s, -0.5, 0.0, v1 );
vpack_c ( 0.0, 1.0, 0.0, v2 );
vpack_c ( -s, -0.5, 0.0, v3 );
pltnrm_c ( v1, v2, v3, normal );
printf ( "NORMAL = %18.11e %18.11e %18.11e\n",
normal[0], normal[1], normal[2] );
return ( 0 );
}
When run on a PC/Linux/gcc/64-bit platform, the output
from this program was:
NORMAL = 0.000000000000E+00 0.000000000000E+00 0.259807621135E+01
None.
None.
N.J. Bachman (JPL)
-CSPICE Version 1.0.0, 26-JAN-2016 (NJB)
compute normal vector of triangular plate from vertices
Link to routine pltnrm_c source file pltnrm_c.c
|