API Documentation > Classes > Class SurfaceOrientation
Class SurfaceOrientation

package com.ptc.pfc.pfcGeometry;

public class
SurfaceOrientation
implements
jxenum


Description
This enumerated type describes the orientation of a surface.
Field Summary
static final int
_SURFACEORIENT_NONE
Integer value of enum value "SURFACEORIENT_NONE"
A surface without a need for orientation (i.e. not a solid surface).
static final SurfaceOrientation
SURFACEORIENT_NONE
Object value of enum value "SURFACEORIENT_NONE"
A surface without a need for orientation (i.e. not a solid surface).
static final int
_SURFACEORIENT_OUTWARD
Integer value of enum value "SURFACEORIENT_OUTWARD"
Surface oriented outward away from the solid model. du X dv points outward.
static final SurfaceOrientation
SURFACEORIENT_OUTWARD
Object value of enum value "SURFACEORIENT_OUTWARD"
Surface oriented outward away from the solid model. du X dv points outward.
static final int
_SURFACEORIENT_INWARD
Integer value of enum value "SURFACEORIENT_INWARD"
Surface oriented inward toward the solid model. du X dv points inward.
static final SurfaceOrientation
SURFACEORIENT_INWARD
Object value of enum value "SURFACEORIENT_INWARD"
Surface oriented inward toward the solid model. du X dv points inward.
static final int
_SurfaceOrientation_null
Enum null value.
Method Summary
FromInt (int value)
Creates enum object from an integer.
FromInt (Integer value)
Creates enum object from an integer object.
int
Returns enum object value as an integer.
Method Detail
getValue
int
getValue
()
Returns enum object value as an integer.
Returns:
Integer enum value.
FromInt
FromInt
(int value)
Creates enum object from an integer.
Parameters:
value
Input integer value.
Returns:
Enum value object.
FromInt
FromInt
(Integer value)
Creates enum object from an integer object.
Parameters:
value
Input integer object.
Returns:
Enum value object.
Was this helpful?