Package net.sf.jaxodraw.object.arc
Class JaxoDashArc
- java.lang.Object
-
- All Implemented Interfaces:
java.awt.Shape
,java.beans.PropertyChangeListener
,java.io.Serializable
,java.lang.Cloneable
,java.util.EventListener
public abstract class JaxoDashArc extends JaxoArcObject
A dashed arc.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class net.sf.jaxodraw.object.Jaxo3PointObject
SELECT_P3
-
Fields inherited from class net.sf.jaxodraw.object.JaxoParticleObject
GHOST_DASH, GLUON_FREQ, PHOTON_FREQ, SCALAR_DASH
-
Fields inherited from class net.sf.jaxodraw.object.JaxoExtendedObject
SELECT_DX, SELECT_DY, SELECT_P2
-
Fields inherited from class net.sf.jaxodraw.object.JaxoObject
D_FORMAT, GRAY_SCALE_FORMAT, SELECT_NONE, SELECT_P1
-
-
Constructor Summary
Constructors Constructor Description JaxoDashArc()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description java.awt.Rectangle
getBounds()
Returns the bounding box of this object.protected abstract float[]
innerStrokeDashes(double radius)
Returns an array that is used as the dash parameter inBasicStroke
to paint the inner part of this arc in double-line mode.java.lang.String
latexCommand(float scale, java.awt.Dimension canvasDim)
The LaTeX command that is necessary to draw the given JaxoObject using the axodraw.sty package.protected abstract float[]
outerStrokeDashes(double radius)
Returns an array that is used as the dash parameter inBasicStroke
to paint the outer part of this arc in double-line mode.void
paint(JaxoGraphics2D g2)
The method that paints the JaxoObject.protected void
resetStroke()
Resets the stroke to a default BasicStroke with current width.protected abstract float[]
strokeDashes()
Returns an array that is used as the dash parameter inBasicStroke
to paint this object.-
Methods inherited from class net.sf.jaxodraw.object.arc.JaxoArcObject
arrowCoordinates, getArcLength, getArcParameters, getArcPoint, getCenterPoint, getEquidistantPoint, getEquidistantPoints, getMidArcPoint, getOpeningAngle, getRadius, isClockwise, isCopy, isSingular, paintVisualAid, setArcPts, setState, tooSingular
-
Methods inherited from class net.sf.jaxodraw.object.Jaxo3PointObject
canBeSelected, copyFrom, getGrabbedHandle, getPointCount, getX, getX3, getY, getY3, isOneLine, moveBy, paintHandles, rescaleObject, set3Pts, setLocation, setX, setX3, setY, setY3, smallestDistanceTo
-
Methods inherited from class net.sf.jaxodraw.object.JaxoParticleObject
arrowPositionIs, copy, copyFrom, dashIs, dlSepIs, getAmp, getArrow, getArrowPosition, getDash, getDLSeparation, getWiggles, isDoubleLine, isFlip, isPaintArrow, paintArrow, setAmp, setArrow, setArrowPosition, setDash, setDLSeparation, setDoubleLine, setFlip, setPaintArrow, setPreferences, setWiggles
-
Methods inherited from class net.sf.jaxodraw.object.JaxoExtendedObject
copyFrom, getHeight, getRelh, getRelSize, getRelw, getSize, getStroke, getStrokeWidth, getWidth, getX2, getY2, latexWidth, setLocation, setRadius, setRelativeHeight, setRelativeWidth, setRelWAndH, setStroke, setStrokeWidth, setX2, setY2, strokeIs
-
Methods inherited from class net.sf.jaxodraw.object.JaxoObject
addPropertyChangeListener, contains, contains, contains, contains, copyFrom, firePropertyChange, getBounds2D, getBoundsWithHandles, getColor, getGeneralPath, getLaTexLocation, getName, getPathIterator, getPathIterator, getPoints, getX, getY, intersects, intersects, isAround, isMarked, prepareEditPanel, propertyChange, removePropertyChangeListener, setAsMarked, setColor, setLocation, setParameter, setParameter, setParameter, setParameter, setParameter, setParameter, setParameter, setPointCount, setPoints, setTransient, setX, setXPosition, setY, setYPosition
-
-
-
-
Method Detail
-
paint
public final void paint(JaxoGraphics2D g2)
The method that paints the JaxoObject.- Specified by:
paint
in classJaxoObject
- Parameters:
g2
- The graphics context where the object has to be painted.
-
getBounds
public java.awt.Rectangle getBounds()
Returns the bounding box of this object.- Returns:
- the bounding box of this object.
-
latexCommand
public final java.lang.String latexCommand(float scale, java.awt.Dimension canvasDim)
The LaTeX command that is necessary to draw the given JaxoObject using the axodraw.sty package.- Specified by:
latexCommand
in classJaxoObject
- Parameters:
scale
- A scale factor to translate Java coordinates to LaTeX coordinates.canvasDim
- The current dimension of the canvas.- Returns:
- The corresponding axodraw LaTeX command.
-
resetStroke
protected void resetStroke()
Resets the stroke to a default BasicStroke with current width. This should be overridden by objects that use a different stroke.- Overrides:
resetStroke
in classJaxoExtendedObject
-
strokeDashes
protected abstract float[] strokeDashes()
Returns an array that is used as the dash parameter inBasicStroke
to paint this object.- Returns:
- a dash array.
-
innerStrokeDashes
protected abstract float[] innerStrokeDashes(double radius)
Returns an array that is used as the dash parameter inBasicStroke
to paint the inner part of this arc in double-line mode.- Parameters:
radius
- the radius.- Returns:
- a dash array.
-
outerStrokeDashes
protected abstract float[] outerStrokeDashes(double radius)
Returns an array that is used as the dash parameter inBasicStroke
to paint the outer part of this arc in double-line mode.- Parameters:
radius
- the radius.- Returns:
- a dash array.
-
-