org.vectomatic.dom.svg
Class OMSVGPathSegCurvetoCubicAbs

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by org.vectomatic.dom.svg.OMSVGPathSeg
          extended by org.vectomatic.dom.svg.OMSVGPathSegCurvetoCubicAbs

public class OMSVGPathSegCurvetoCubicAbs
extends OMSVGPathSeg

The OMSVGPathSegCurvetoCubicAbs interface corresponds to an "absolute cubic Bézier curveto" (C) path data command.


Field Summary
 
Fields inherited from class org.vectomatic.dom.svg.OMSVGPathSeg
PATHSEG_ARC_ABS, PATHSEG_ARC_REL, PATHSEG_CLOSEPATH, PATHSEG_CURVETO_CUBIC_ABS, PATHSEG_CURVETO_CUBIC_REL, PATHSEG_CURVETO_CUBIC_SMOOTH_ABS, PATHSEG_CURVETO_CUBIC_SMOOTH_REL, PATHSEG_CURVETO_QUADRATIC_ABS, PATHSEG_CURVETO_QUADRATIC_REL, PATHSEG_CURVETO_QUADRATIC_SMOOTH_ABS, PATHSEG_CURVETO_QUADRATIC_SMOOTH_REL, PATHSEG_LINETO_ABS, PATHSEG_LINETO_HORIZONTAL_ABS, PATHSEG_LINETO_HORIZONTAL_REL, PATHSEG_LINETO_REL, PATHSEG_LINETO_VERTICAL_ABS, PATHSEG_LINETO_VERTICAL_REL, PATHSEG_MOVETO_ABS, PATHSEG_MOVETO_REL, PATHSEG_UNKNOWN
 
Constructor Summary
protected OMSVGPathSegCurvetoCubicAbs()
           
 
Method Summary
 float getX()
          The absolute X coordinate for the end point of this path segment.
 float getX1()
          The absolute X coordinate for the first control point.
 float getX2()
          The absolute X coordinate for the second control point.
 float getY()
          The absolute Y coordinate for the end point of this path segment.
 float getY1()
          The absolute Y coordinate for the first control point.
 float getY2()
          The absolute Y coordinate for the second control point.
 void setX(float value)
          The absolute X coordinate for the end point of this path segment.
 void setX1(float value)
          The absolute X coordinate for the first control point.
 void setX2(float value)
          The absolute X coordinate for the second control point.
 void setY(float value)
          The absolute Y coordinate for the end point of this path segment.
 void setY1(float value)
          The absolute Y coordinate for the first control point.
 void setY2(float value)
          The absolute Y coordinate for the second control point.
 
Methods inherited from class org.vectomatic.dom.svg.OMSVGPathSeg
getPathSegType, getPathSegTypeAsLetter
 
Methods inherited from class com.google.gwt.core.client.JavaScriptObject
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

OMSVGPathSegCurvetoCubicAbs

protected OMSVGPathSegCurvetoCubicAbs()
Method Detail

getX

public final float getX()
The absolute X coordinate for the end point of this path segment.


setX

public final void setX(float value)
                throws com.google.gwt.core.client.JavaScriptException
The absolute X coordinate for the end point of this path segment.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException

getY

public final float getY()
The absolute Y coordinate for the end point of this path segment.


setY

public final void setY(float value)
                throws com.google.gwt.core.client.JavaScriptException
The absolute Y coordinate for the end point of this path segment.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException

getX1

public final float getX1()
The absolute X coordinate for the first control point.


setX1

public final void setX1(float value)
                 throws com.google.gwt.core.client.JavaScriptException
The absolute X coordinate for the first control point.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException

getY1

public final float getY1()
The absolute Y coordinate for the first control point.


setY1

public final void setY1(float value)
                 throws com.google.gwt.core.client.JavaScriptException
The absolute Y coordinate for the first control point.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException

getX2

public final float getX2()
The absolute X coordinate for the second control point.


setX2

public final void setX2(float value)
                 throws com.google.gwt.core.client.JavaScriptException
The absolute X coordinate for the second control point.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException

getY2

public final float getY2()
The absolute Y coordinate for the second control point.


setY2

public final void setY2(float value)
                 throws com.google.gwt.core.client.JavaScriptException
The absolute Y coordinate for the second control point.

Throws:
DOMException(NO_MODIFICATION_ALLOWED_ERR) - Raised on an attempt to change the value of a read only attribute.
com.google.gwt.core.client.JavaScriptException


Copyright © 2012. All Rights Reserved.