Class ArrowShape
java.lang.Object
com.inductiveautomation.vision.api.client.components.shapes.ShapeDelegate
com.inductiveautomation.factorypmi.application.components.shapes.ArrowShape
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionArrowShape
(Point2D origin, float length, float angle, float shaftWidth, float headLength, float headWidth) ArrowShape
(Point2D origin, float length, float angle, float shaftWidth, float headLength, float headWidth, boolean doubleSided) -
Method Summary
Modifier and TypeMethodDescriptionboolean
alterShape
(Rectangle2D newRect) Directly modify the shape's frame so that it fits tightly within the new framing rectangle.Convert this shape to a GeneralPathfloat
getAngle()
float
float
float
float
getShape()
The AWT shape this delegate producesboolean
boolean
Some shape delegates prefer to handle rotation themselves, instead of having the PathBasedVisionShape parent rotate their shape after the fact.boolean
void
void
setAngle
(float angle) void
setDoubleSided
(boolean doubleSided) void
setHeadLength
(float headLength) void
setHeadWidth
(float headWidth) void
setLength
(float length) void
void
setShaftWidth
(float shaftWidth) void
translateShape
(double dX, double dY) Move the shape using the provided offsets.void
Methods inherited from class com.inductiveautomation.vision.api.client.components.shapes.ShapeDelegate
createArea, getBounds2D, getCenterpoint
-
Field Details
-
TOOL_KEY
- See Also:
-
-
Constructor Details
-
ArrowShape
public ArrowShape() -
ArrowShape
public ArrowShape(Point2D origin, float length, float angle, float shaftWidth, float headLength, float headWidth) -
ArrowShape
public ArrowShape(Point2D origin, float length, float angle, float shaftWidth, float headLength, float headWidth, boolean doubleSided)
-
-
Method Details
-
getToolKey
- Specified by:
getToolKey
in classShapeDelegate
-
getShape
Description copied from class:ShapeDelegate
The AWT shape this delegate produces- Specified by:
getShape
in classShapeDelegate
-
isSymmetric
public boolean isSymmetric()- Specified by:
isSymmetric
in classShapeDelegate
-
isRotatable
public boolean isRotatable()Description copied from class:ShapeDelegate
Some shape delegates prefer to handle rotation themselves, instead of having the PathBasedVisionShape parent rotate their shape after the fact. Delegates that do this should return true from this method, and then handle the rotate method appropriately. Note that all rotations must go through the PathBasedVisionShape so that it can update the angle property.- Overrides:
isRotatable
in classShapeDelegate
-
rotate
- Overrides:
rotate
in classShapeDelegate
-
getTipPoint
-
updateShape
public void updateShape() -
translateShape
public void translateShape(double dX, double dY) Description copied from class:ShapeDelegate
Move the shape using the provided offsets. Default implementation calls alterShape.- Overrides:
translateShape
in classShapeDelegate
-
alterShape
Description copied from class:ShapeDelegate
Directly modify the shape's frame so that it fits tightly within the new framing rectangle.- Specified by:
alterShape
in classShapeDelegate
- Parameters:
newRect
- The new bounding rectangle for the shape.- Returns:
- false if the shape was unable to alter itself into the given rectangle.
-
convertToPath
Description copied from class:ShapeDelegate
Convert this shape to a GeneralPath- Overrides:
convertToPath
in classShapeDelegate
-
getOrigin
-
setOrigin
-
getLength
public float getLength() -
setLength
public void setLength(float length) -
getAngle
public float getAngle() -
setAngle
public void setAngle(float angle) -
getShaftWidth
public float getShaftWidth() -
setShaftWidth
public void setShaftWidth(float shaftWidth) -
getHeadLength
public float getHeadLength() -
setHeadLength
public void setHeadLength(float headLength) -
getHeadWidth
public float getHeadWidth() -
setHeadWidth
public void setHeadWidth(float headWidth) -
isDoubleSided
public boolean isDoubleSided() -
setDoubleSided
public void setDoubleSided(boolean doubleSided)
-