mirror of https://github.com/apache/poi.git
support rotation of simple shapes
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@758578 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
34bd8dd94d
commit
f1826a6911
|
@ -246,6 +246,15 @@ public class SimpleShape extends Shape {
|
|||
return angle;
|
||||
}
|
||||
|
||||
/**
|
||||
* Rotate this shape
|
||||
*
|
||||
* @param theta the rotation angle in degrees
|
||||
*/
|
||||
public void setRotation(int theta){
|
||||
setEscherProperty(EscherProperties.TRANSFORM__ROTATION, (theta << 16));
|
||||
}
|
||||
|
||||
public Rectangle2D getLogicalAnchor2D(){
|
||||
Rectangle2D anchor = getAnchor2D();
|
||||
|
||||
|
|
Loading…
Reference in New Issue