接口 IThreeDFormat
public interface IThreeDFormat
Represents a shape's three-dimensional formatting.
-
方法概要
修饰符和类型方法说明double
getDepth()
Gets the depth of the shape's extrusion.int
Gets whether the extrusion appears in perspective.double
Gets the rotation of the extruded shape around the x-axis in degrees.double
Gets the rotation of the extruded shape around the y-axis in degrees.double
Gets the rotation of the extruded shape around the z-axis in degrees.boolean
Gets whether the object is visible.double
getZ()
Returns the Z order of the specifiedIThreeDFormat
object.void
Resets the extrusion rotation around the x-axis and the y-axis to 0 (zero) so that the front of the extrusion faces forward.void
setDepth
(double value) Sets the depth of the shape's extrusion.void
setPerspective
(int value) Sets whether the extrusion appears in perspective.void
setRotationX
(double value) Sets the rotation of the extruded shape around the x-axis in degrees.void
setRotationY
(double value) Sets the rotation of the extruded shape around the y-axis in degrees.void
setRotationZ
(double value) Sets the rotation of the extruded shape around the z-axis in degrees.void
setVisible
(boolean value) Sets whether the object is visible.void
setZ
(double value) Sets the Z order of the specifiedIThreeDFormat
object.
-
方法详细资料
-
getDepth
double getDepth()Gets the depth of the shape's extrusion. -
setDepth
void setDepth(double value) Sets the depth of the shape's extrusion. -
getPerspective
int getPerspective()Gets whether the extrusion appears in perspective. -
setPerspective
void setPerspective(int value) Sets whether the extrusion appears in perspective. -
getRotationX
double getRotationX()Gets the rotation of the extruded shape around the x-axis in degrees. -
setRotationX
void setRotationX(double value) Sets the rotation of the extruded shape around the x-axis in degrees. -
getRotationY
double getRotationY()Gets the rotation of the extruded shape around the y-axis in degrees. -
setRotationY
void setRotationY(double value) Sets the rotation of the extruded shape around the y-axis in degrees. -
getRotationZ
double getRotationZ()Gets the rotation of the extruded shape around the z-axis in degrees. -
setRotationZ
void setRotationZ(double value) Sets the rotation of the extruded shape around the z-axis in degrees. -
getVisible
boolean getVisible()Gets whether the object is visible. -
setVisible
void setVisible(boolean value) Sets whether the object is visible. -
getZ
double getZ()Returns the Z order of the specifiedIThreeDFormat
object. -
setZ
void setZ(double value) Sets the Z order of the specifiedIThreeDFormat
object. -
resetRotation
void resetRotation()Resets the extrusion rotation around the x-axis and the y-axis to 0 (zero) so that the front of the extrusion faces forward.
-