Tabnine Logo
AbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItem.setX1
Code IndexAdd Tabnine to your IDE (free)

How to use
setX1
method
in
org.apache.batik.dom.svg.AbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItem

Best Java code snippets using org.apache.batik.dom.svg.AbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItem.setX1 (Showing top 7 results out of 315)

origin: fr.avianey.apache-xmlgraphics/batik

SVGPathSegCurvetoQuadraticItem ps =
  (SVGPathSegCurvetoQuadraticItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
origin: apache/batik

SVGPathSegCurvetoQuadraticItem ps =
  (SVGPathSegCurvetoQuadraticItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
origin: org.apache.xmlgraphics/batik-anim

SVGPathSegCurvetoQuadraticItem ps =
  (SVGPathSegCurvetoQuadraticItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
origin: apache/batik

public SVGPathSegCurvetoQuadraticItem(SVGPathSeg pathSeg){
  this.type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
    letter = PATHSEG_CURVETO_QUADRATIC_ABS_LETTER;
    setX(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getX());
    setY(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getY());
    setX1(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getY1());
    break;
  case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
    letter = PATHSEG_CURVETO_QUADRATIC_REL_LETTER;
    setX(((SVGPathSegCurvetoQuadraticRel)pathSeg).getX());
    setY(((SVGPathSegCurvetoQuadraticRel)pathSeg).getY());
    setX1(((SVGPathSegCurvetoQuadraticRel)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoQuadraticRel)pathSeg).getY1());
    break;
default:
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

public SVGPathSegCurvetoQuadraticItem(SVGPathSeg pathSeg){
  this.type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_ABS:
    letter = PATHSEG_CURVETO_QUADRATIC_ABS_LETTER;
    setX(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getX());
    setY(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getY());
    setX1(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoQuadraticAbs)pathSeg).getY1());
    break;
  case SVGPathSeg.PATHSEG_CURVETO_QUADRATIC_REL:
    letter = PATHSEG_CURVETO_QUADRATIC_REL_LETTER;
    setX(((SVGPathSegCurvetoQuadraticRel)pathSeg).getX());
    setY(((SVGPathSegCurvetoQuadraticRel)pathSeg).getY());
    setX1(((SVGPathSegCurvetoQuadraticRel)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoQuadraticRel)pathSeg).getY1());
    break;
default:
  }
}
origin: apache/batik

public SVGPathSegCurvetoQuadraticItem(short type,String letter,
                 float x1,float y1,float x, float y ){
  super(type,letter);
  this.setX(x);
  this.setY(y);
  this.setX1(x1);
  this.setY1(y1);
}
origin: fr.avianey.apache-xmlgraphics/batik

public SVGPathSegCurvetoQuadraticItem(short type,String letter,
                 float x1,float y1,float x, float y ){
  super(type,letter);
  this.setX(x);
  this.setY(y);
  this.setX1(x1);
  this.setY1(y1);
}
org.apache.batik.dom.svgAbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItemsetX1

Popular methods of AbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItem

  • <init>
  • setX
  • setY
  • setY1
  • getX
  • getX1
  • getY
  • getY1
  • resetAttribute

Popular in Java

  • Start an intent from android
  • getSystemService (Context)
  • setRequestProperty (URLConnection)
  • runOnUiThread (Activity)
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • Set (java.util)
    A Set is a data structure which does not allow duplicate elements.
  • Executor (java.util.concurrent)
    An object that executes submitted Runnable tasks. This interface provides a way of decoupling task s
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • JPanel (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now