| Library | Package | Frames | Expand | Java Toolkit |
| Field Summary | |
|---|---|
| static final int | _SRFTESS_DEFAULT_PROJECTION
Integer value of enum value "SRFTESS_DEFAULT_PROJECTION" Default projection; this will provide UV params for the tessellation points which map to a plane whose U and V extents are each [0,1] |
| static final SurfaceTessellationProjection | SRFTESS_DEFAULT_PROJECTION
Object value of enum value "SRFTESS_DEFAULT_PROJECTION" Default projection; this will provide UV params for the tessellation points which map to a plane whose U and V extents are each [0,1] |
| static final int | _SRFTESS_PLANAR_PROJECTION
Integer value of enum value "SRFTESS_PLANAR_PROJECTION" Project the UV params using a planar transform, where u = x, v = y, z is ignored. |
| static final SurfaceTessellationProjection | SRFTESS_PLANAR_PROJECTION
Object value of enum value "SRFTESS_PLANAR_PROJECTION" Project the UV params using a planar transform, where u = x, v = y, z is ignored. |
| static final int | _SRFTESS_CYLINDRICAL_PROJECTION
Integer value of enum value "SRFTESS_CYLINDRICAL_PROJECTION" Project the UV params using a cylindrical transform, where where x = r*cos(theta) and y = r*sin(theta); u = theta, v = z, r is ignored |
| static final SurfaceTessellationProjection | SRFTESS_CYLINDRICAL_PROJECTION
Object value of enum value "SRFTESS_CYLINDRICAL_PROJECTION" Project the UV params using a cylindrical transform, where where x = r*cos(theta) and y = r*sin(theta); u = theta, v = z, r is ignored |
| static final int | _SRFTESS_SPHERICAL_PROJECTION
Integer value of enum value "SRFTESS_SPHERICAL_PROJECTION" Project the UV params onto a sphere, where x = r*cos(theta)*sin(phi), y = r*sin(theta)*sin(phi), z = r*cos(phi); u = theta, v = phi, r is ignored |
| static final SurfaceTessellationProjection | SRFTESS_SPHERICAL_PROJECTION
Object value of enum value "SRFTESS_SPHERICAL_PROJECTION" Project the UV params onto a sphere, where x = r*cos(theta)*sin(phi), y = r*sin(theta)*sin(phi), z = r*cos(phi); u = theta, v = phi, r is ignored |
| static final int | _SRFTESS_NO_PROJECTION
Integer value of enum value "SRFTESS_NO_PROJECTION" No projection; this will provide unmodified UV params for the tessellation points. |
| static final SurfaceTessellationProjection | SRFTESS_NO_PROJECTION
Object value of enum value "SRFTESS_NO_PROJECTION" No projection; this will provide unmodified UV params for the tessellation points. |
| static final int | _SurfaceTessellationProjection_null
Enum null value. |
| Method Summary | |
|---|---|
| static SurfaceTessellationProjection | FromInt
(int value)
Creates enum object from an integer. |
| static SurfaceTessellationProjection | FromInt
(Integer value)
Creates enum object from an integer object. |
| int | getValue
()
Returns enum object value as an integer. |
| Method Detail |
|---|
| getValue |
|---|
| int | getValue | () |
Returns enum object value as an integer.
|
| FromInt |
|---|
| static SurfaceTessellationProjection | FromInt | (int value) |
Creates enum object from an integer.
|
| FromInt |
|---|
| static SurfaceTessellationProjection | FromInt | (Integer value) |
Creates enum object from an integer object.
|