Class StiPathCubicBezier

java.lang.Object
com.stimulsoft.base.drawing.path.StiPathCommand
com.stimulsoft.base.drawing.path.StiPathCubicBezier

public class StiPathCubicBezier extends StiPathCommand
Copyright Stimulsoft
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    double
    The X coordinate of the first control point of the cubic curve segment.
    double
    The X coordinate of the second control point of the cubic curve segment.
    double
    The Y coordinate of the first control point of the cubic curve segment.
    double
    The Y coordinate of the second control point of the cubic curve segment.
    double
     
    double
    The X coordinate of the end point of the cubic curve segment.
    double
    The Y coordinate of the start point of the cubic curve segment.
    double
    The Y coordinate of the end point of the cubic curve segment.

    Fields inherited from class com.stimulsoft.base.drawing.path.StiPathCommand

    KAPPA
  • Constructor Summary

    Constructors
    Constructor
    Description
    StiPathCubicBezier(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Return operation

    Methods inherited from class com.stimulsoft.base.drawing.path.StiPathCommand

    createCircle, curveTo, getX, getY, lineTo, moveTo, setX, setY

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • x1

      public double x1
    • y1

      public double y1
      The Y coordinate of the start point of the cubic curve segment.
      Since:
      1.2
    • ctrlx1

      public double ctrlx1
      The X coordinate of the first control point of the cubic curve segment.
      Since:
      1.2
    • ctrly1

      public double ctrly1
      The Y coordinate of the first control point of the cubic curve segment.
      Since:
      1.2
    • ctrlx2

      public double ctrlx2
      The X coordinate of the second control point of the cubic curve segment.
      Since:
      1.2
    • ctrly2

      public double ctrly2
      The Y coordinate of the second control point of the cubic curve segment.
      Since:
      1.2
    • x2

      public double x2
      The X coordinate of the end point of the cubic curve segment.
      Since:
      1.2
    • y2

      public double y2
      The Y coordinate of the end point of the cubic curve segment.
      Since:
      1.2
  • Constructor Details

    • StiPathCubicBezier

      public StiPathCubicBezier(double x1, double y1, double ctrlx1, double ctrly1, double ctrlx2, double ctrly2, double x2, double y2)
      Parameters:
      x1 -
      y1 -
      ctrlx1 -
      ctrly1 -
      ctrlx2 -
      ctrly2 -
      x2 -
      y2 -
      x -
      y -
  • Method Details