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

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

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

origin: fr.avianey.apache-xmlgraphics/batik

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

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

  (SVGPathSegCurvetoQuadraticItem) s;
ps.setX1(parameters[j[0]++]);
ps.setY1(parameters[j[0]++]);
ps.setX(parameters[j[0]++]);
ps.setY(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$SVGPathSegCurvetoQuadraticItemsetY1

Popular methods of AbstractSVGPathSegList$SVGPathSegCurvetoQuadraticItem

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

Popular in Java

  • Finding current android device location
  • requestLocationUpdates (LocationManager)
  • setContentView (Activity)
  • notifyDataSetChanged (ArrayAdapter)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • File (java.io)
    An "abstract" representation of a file system entity identified by a pathname. The pathname may be a
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Loader (org.hibernate.loader)
    Abstract superclass of object loading (and querying) strategies. This class implements useful common
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Best plugins for Eclipse
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