congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AbstractSVGPathSegList$SVGPathSegCurvetoCubicItem.setY1
Code IndexAdd Tabnine to your IDE (free)

How to use
setY1
method
in
org.apache.batik.dom.svg.AbstractSVGPathSegList$SVGPathSegCurvetoCubicItem

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

origin: org.apache.xmlgraphics/batik-anim

  (SVGPathSegCurvetoCubicItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
origin: fr.avianey.apache-xmlgraphics/batik

  (SVGPathSegCurvetoCubicItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
origin: apache/batik

  (SVGPathSegCurvetoCubicItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
origin: apache/batik

public SVGPathSegCurvetoCubicItem(SVGPathSeg pathSeg){
  this.type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
    letter = PATHSEG_CURVETO_CUBIC_ABS_LETTER;
    setX(((SVGPathSegCurvetoCubicAbs)pathSeg).getX());
    setY(((SVGPathSegCurvetoCubicAbs)pathSeg).getY());
    setX1(((SVGPathSegCurvetoCubicAbs)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoCubicAbs)pathSeg).getY1());
    setX2(((SVGPathSegCurvetoCubicAbs)pathSeg).getX2());
    setY2(((SVGPathSegCurvetoCubicAbs)pathSeg).getY2());
    break;
  case SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:
    letter = PATHSEG_CURVETO_CUBIC_REL_LETTER;
    setX(((SVGPathSegCurvetoCubicRel)pathSeg).getX());
    setY(((SVGPathSegCurvetoCubicRel)pathSeg).getY());
    setX1(((SVGPathSegCurvetoCubicRel)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoCubicRel)pathSeg).getY1());
    setX2(((SVGPathSegCurvetoCubicRel)pathSeg).getX2());
    setY2(((SVGPathSegCurvetoCubicRel)pathSeg).getY2());
    break;
  default:
  }
}
origin: fr.avianey.apache-xmlgraphics/batik

public SVGPathSegCurvetoCubicItem(SVGPathSeg pathSeg){
  this.type = pathSeg.getPathSegType();
  switch(type){
  case SVGPathSeg.PATHSEG_CURVETO_CUBIC_ABS:
    letter = PATHSEG_CURVETO_CUBIC_ABS_LETTER;
    setX(((SVGPathSegCurvetoCubicAbs)pathSeg).getX());
    setY(((SVGPathSegCurvetoCubicAbs)pathSeg).getY());
    setX1(((SVGPathSegCurvetoCubicAbs)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoCubicAbs)pathSeg).getY1());
    setX2(((SVGPathSegCurvetoCubicAbs)pathSeg).getX2());
    setY2(((SVGPathSegCurvetoCubicAbs)pathSeg).getY2());
    break;
  case SVGPathSeg.PATHSEG_CURVETO_CUBIC_REL:
    letter = PATHSEG_CURVETO_CUBIC_REL_LETTER;
    setX(((SVGPathSegCurvetoCubicRel)pathSeg).getX());
    setY(((SVGPathSegCurvetoCubicRel)pathSeg).getY());
    setX1(((SVGPathSegCurvetoCubicRel)pathSeg).getX1());
    setY1(((SVGPathSegCurvetoCubicRel)pathSeg).getY1());
    setX2(((SVGPathSegCurvetoCubicRel)pathSeg).getX2());
    setY2(((SVGPathSegCurvetoCubicRel)pathSeg).getY2());
    break;
  default:
  }
}
origin: apache/batik

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

public SVGPathSegCurvetoCubicItem(short type,String letter,
               float x1,float y1,float x2, float y2,
               float x, float y){
  super(type,letter);
  this.setX(x);
  this.setY(y);
  this.setX1(x1);
  this.setY1(y1);
  this.setX2(x2);
  this.setY2(y2);
}
org.apache.batik.dom.svgAbstractSVGPathSegList$SVGPathSegCurvetoCubicItemsetY1

Popular methods of AbstractSVGPathSegList$SVGPathSegCurvetoCubicItem

  • <init>
  • setX
  • setX1
  • setX2
  • setY
  • setY2
  • getX
  • getX1
  • getX2
  • getY
  • getY1
  • getY2
  • getY1,
  • getY2,
  • resetAttribute

Popular in Java

  • Running tasks concurrently on multiple threads
  • getApplicationContext (Context)
  • setContentView (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • BigDecimal (java.math)
    An immutable arbitrary-precision signed decimal.A value is represented by an arbitrary-precision "un
  • Permission (java.security)
    Legacy security code; do not use.
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • BoxLayout (javax.swing)
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • 14 Best Plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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