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

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

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

origin: org.apache.xmlgraphics/batik-anim

ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
ps.setY(parameters[j[0]++]);
break;
origin: fr.avianey.apache-xmlgraphics/batik

ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
ps.setY(parameters[j[0]++]);
break;
origin: apache/batik

ps.setX2(parameters[j[0]++]);
ps.setY2(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
ps.setY(parameters[j[0]++]);
break;
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$SVGPathSegCurvetoCubicItemsetX

Popular methods of AbstractSVGPathSegList$SVGPathSegCurvetoCubicItem

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

Popular in Java

  • Making http requests using okhttp
  • getSharedPreferences (Context)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • notifyDataSetChanged (ArrayAdapter)
  • InputStream (java.io)
    A readable source of bytes.Most clients will use input streams that read data from the file system (
  • Permission (java.security)
    Legacy security code; do not use.
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Table (org.hibernate.mapping)
    A relational table
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • 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