|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IEncode3DProperties
Provides access to members that encode and decode normals and 2D texture coordinates into a single double value.
Method Summary | |
---|---|
void |
packNormal(IVector3D normalVector,
double[] packedNormal)
Encodes a normal into part of a double. |
void |
packTexture2D(double textureS,
double textureT,
double[] packedTexture)
Encodes texture coordinates into part of a double. |
void |
unPackNormal(double packedNormal,
IVector3D normalVector,
boolean[] wasProductive)
Decodes a normal from a double. |
void |
unPackTexture2D(double packedTextureST,
double[] textureS,
double[] textureT,
boolean[] wasProductive)
Decodes texture coordinates. |
Method Detail |
---|
void packNormal(IVector3D normalVector, double[] packedNormal) throws IOException, AutomationException
normalVector
- A reference to a com.esri.arcgis.geometry.IVector3D (in)packedNormal
- The packedNormal (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void unPackNormal(double packedNormal, IVector3D normalVector, boolean[] wasProductive) throws IOException, AutomationException
packedNormal
- The packedNormal (in)normalVector
- A reference to a com.esri.arcgis.geometry.IVector3D (in)wasProductive
- The wasProductive (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void packTexture2D(double textureS, double textureT, double[] packedTexture) throws IOException, AutomationException
textureS
- The textureS (in)textureT
- The textureT (in)packedTexture
- The packedTexture (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void unPackTexture2D(double packedTextureST, double[] textureS, double[] textureT, boolean[] wasProductive) throws IOException, AutomationException
packedTextureST
- The packedTextureST (in)textureS
- The textureS (out: use single element array)textureT
- The textureT (out: use single element array)wasProductive
- The wasProductive (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |