Package com.aspose.threed
Class CubeFaceData<T>
- java.lang.Object
-
- com.aspose.threed.CubeFaceData<T>
-
- All Implemented Interfaces:
com.aspose.threed.Struct<CubeFaceData<T>>
,java.io.Serializable
,java.lang.Cloneable
public final class CubeFaceData<T> extends java.lang.Object implements com.aspose.threed.Struct<CubeFaceData<T>>, java.io.Serializable
Data for each face of the cube map texture.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CubeFaceData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CubeFaceData<T>
clone()
void
copyFrom(CubeFaceData<T> src)
boolean
equals(java.lang.Object obj)
T
get(CubeFace face)
Gets the data for specified faceT
getBack()
Gets the data for +Z(Back) faceT
getBottom()
Gets the data for -Y(Bottom) faceT
getFront()
Gets the data for -Z(Front) faceT
getLeft()
Gets the data for +X(Left) faceT
getNegativeX()
Gets the data for +X(Left) faceT
getNegativeY()
Gets the data for -Y(Bottom) faceT
getNegativeZ()
Gets the data for -Z(Front) faceT
getPositiveX()
Gets the data for +X(Right) faceT
getPositiveY()
Gets the data for +Y(Top) faceT
getPositiveZ()
Gets the data for +Z(Back) faceT
getRight()
Gets the data for +X(Right) faceT
getTop()
Gets the data for +Y(Top) faceint
hashCode()
void
set(CubeFace face, T value)
Sets the data for specified facevoid
setBack(T value)
Sets the data for +Z(Back) facevoid
setBottom(T value)
Sets the data for -Y(Bottom) facevoid
setFront(T value)
Sets the data for -Z(Front) facevoid
setLeft(T value)
Sets the data for +X(Left) facevoid
setNegativeX(T value)
Sets the data for +X(Left) facevoid
setNegativeY(T value)
Sets the data for -Y(Bottom) facevoid
setNegativeZ(T value)
Sets the data for -Z(Front) facevoid
setPositiveX(T value)
Sets the data for +X(Right) facevoid
setPositiveY(T value)
Sets the data for +Y(Top) facevoid
setPositiveZ(T value)
Sets the data for +Z(Back) facevoid
setRight(T value)
Sets the data for +X(Right) facevoid
setTop(T value)
Sets the data for +Y(Top) face
-
-
-
Method Detail
-
getPositiveX
public T getPositiveX()
Gets the data for +X(Right) face
-
setPositiveX
public void setPositiveX(T value)
Sets the data for +X(Right) face- Parameters:
value
- New value
-
getRight
public T getRight()
Gets the data for +X(Right) face
-
setRight
public void setRight(T value)
Sets the data for +X(Right) face- Parameters:
value
- New value
-
getNegativeX
public T getNegativeX()
Gets the data for +X(Left) face
-
setNegativeX
public void setNegativeX(T value)
Sets the data for +X(Left) face- Parameters:
value
- New value
-
getLeft
public T getLeft()
Gets the data for +X(Left) face
-
setLeft
public void setLeft(T value)
Sets the data for +X(Left) face- Parameters:
value
- New value
-
getPositiveY
public T getPositiveY()
Gets the data for +Y(Top) face
-
setPositiveY
public void setPositiveY(T value)
Sets the data for +Y(Top) face- Parameters:
value
- New value
-
getTop
public T getTop()
Gets the data for +Y(Top) face
-
setTop
public void setTop(T value)
Sets the data for +Y(Top) face- Parameters:
value
- New value
-
getNegativeY
public T getNegativeY()
Gets the data for -Y(Bottom) face
-
setNegativeY
public void setNegativeY(T value)
Sets the data for -Y(Bottom) face- Parameters:
value
- New value
-
getBottom
public T getBottom()
Gets the data for -Y(Bottom) face
-
setBottom
public void setBottom(T value)
Sets the data for -Y(Bottom) face- Parameters:
value
- New value
-
getPositiveZ
public T getPositiveZ()
Gets the data for +Z(Back) face
-
setPositiveZ
public void setPositiveZ(T value)
Sets the data for +Z(Back) face- Parameters:
value
- New value
-
getBack
public T getBack()
Gets the data for +Z(Back) face
-
setBack
public void setBack(T value)
Sets the data for +Z(Back) face- Parameters:
value
- New value
-
getNegativeZ
public T getNegativeZ()
Gets the data for -Z(Front) face
-
setNegativeZ
public void setNegativeZ(T value)
Sets the data for -Z(Front) face- Parameters:
value
- New value
-
getFront
public T getFront()
Gets the data for -Z(Front) face
-
setFront
public void setFront(T value)
Sets the data for -Z(Front) face- Parameters:
value
- New value
-
set
public void set(CubeFace face, T value)
Sets the data for specified face- Parameters:
value
- New value
-
clone
public CubeFaceData<T> clone()
- Specified by:
clone
in interfacecom.aspose.threed.Struct<T>
- Overrides:
clone
in classjava.lang.Object
-
copyFrom
public void copyFrom(CubeFaceData<T> src)
- Specified by:
copyFrom
in interfacecom.aspose.threed.Struct<T>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-