Package | Description |
---|---|
com.aspose.imaging |
The package is the core for nested packages and the most basic objects used for Aspose.Imaging processing.
|
com.aspose.imaging.brushes |
The package provides helper classes and methods to work with different brush types.
|
com.aspose.imaging.extensions |
The package contains extension methods.
|
com.aspose.imaging.fileformats.cdr.types |
The namespace handles Cdr file format processing.
|
com.aspose.imaging.fileformats.cmx.objectmodel.specs |
The namespace handles Tiff file format processing.
|
com.aspose.imaging.fileformats.emf.emfplus.objects |
The package contains types [MS-EMFPLUS]: Enhanced Metafile Format Plus Extensions
2.2 EMF+ Objects.
|
com.aspose.imaging.fileformats.emf.emfplus.records |
The package contains types [MS-EMFPLUS]: Enhanced Metafile Format Plus Extensions
2.3 EMF+ Records
|
com.aspose.imaging.fileformats.emf.graphics |
The package contains Emf/Emf+ graphics.
|
com.aspose.imaging.fileformats.opendocument.objects.graphic |
The Open document graphic objects
|
com.aspose.imaging.fileformats.psd.layers.fillsettings |
The namespace contains Fill Settings classes
|
com.aspose.imaging.fileformats.svg.graphics |
The namespace for drawing on Svg.
|
com.aspose.imaging.shapes |
The package contains different shapes combined from shape segments.
|
com.aspose.imaging.shapesegments |
The package contains different shape segments which combine shapes.
|
Modifier and Type | Method and Description |
---|---|
static PointF |
PointF.add(PointF point,
Size size)
Translates a given
Aspose.Imaging.PointF by the specified Aspose.Imaging.Size . |
static PointF |
PointF.add(PointF point,
SizeF size)
Translates a given
Aspose.Imaging.PointF by a specified Aspose.Imaging.SizeF . |
PointF |
PointF.Clone() |
abstract PointF |
Shape.getCenter()
Gets the shape's center.
|
static PointF |
PointF.getEmpty()
Gets a new instance of the
Aspose.Imaging.PointF structure that has com.aspose.imaging.PointF.X and com.aspose.imaging.PointF.Y values set to zero. |
abstract PointF |
ShapeSegment.getEndPoint()
Gets the ending point.
|
PointF |
IOrderedShape.getEndPoint()
Gets the ending shape point.
|
PointF |
RectangleF.getLocation()
Gets or sets the coordinates of the upper-left corner of this
Aspose.Imaging.RectangleF structure. |
abstract PointF |
ShapeSegment.getStartPoint()
Gets the starting point.
|
PointF |
IOrderedShape.getStartPoint()
Gets the starting shape point.
|
static PointF |
PointF.op_Addition(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by a given Aspose.Imaging.Size . |
static PointF |
PointF.op_Addition(PointF point,
SizeF size)
Translates the
Aspose.Imaging.PointF by the specified Aspose.Imaging.SizeF . |
static PointF |
PointF.op_Subtraction(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by the negative of a given Aspose.Imaging.Size . |
static PointF |
PointF.op_Subtraction(PointF point,
SizeF size)
Translates a
Aspose.Imaging.PointF by the negative of a specified Aspose.Imaging.SizeF . |
static PointF |
PointF.subtract(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by the negative of a specified size. |
static PointF |
PointF.subtract(PointF point,
SizeF size)
Translates a
Aspose.Imaging.PointF by the negative of a specified size. |
static PointF |
Point.to_PointF(Point point)
Converts the specified
Point structure to the PointF structure. |
static PointF |
SizeF.to_PointF(SizeF size)
Converts the specified
Aspose.Imaging.SizeF to a Aspose.Imaging.PointF . |
PointF |
SizeF.toPointF()
Converts a
Aspose.Imaging.SizeF to a Aspose.Imaging.PointF . |
Modifier and Type | Method and Description |
---|---|
static PointF |
PointF.add(PointF point,
Size size)
Translates a given
Aspose.Imaging.PointF by the specified Aspose.Imaging.Size . |
static PointF |
PointF.add(PointF point,
SizeF size)
Translates a given
Aspose.Imaging.PointF by a specified Aspose.Imaging.SizeF . |
static Point |
Point.ceiling(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point by rounding the values of the Aspose.Imaging.PointF to the next higher integer values. |
void |
PointF.CloneTo(PointF that) |
boolean |
RectangleF.contains(PointF point)
Determines if the specified point is contained within this
Aspose.Imaging.RectangleF structure. |
void |
Graphics.drawBezier(Pen pen,
PointF pt1,
PointF pt2,
PointF pt3,
PointF pt4)
Draws a Bézier spline defined by four
PointF structures. |
void |
Graphics.drawBeziers(Pen pen,
PointF[] points)
Draws a series of Bézier splines from an array of
PointF structures. |
void |
Graphics.drawClosedCurve(Pen pen,
PointF[] points)
Draws a closed cardinal spline defined by an array of
PointF structures. |
void |
Graphics.drawClosedCurve(Pen pen,
PointF[] points,
float tension)
Draws a closed cardinal spline defined by an array of
PointF structures using a specified tension. |
void |
Graphics.drawCurve(Pen pen,
PointF[] points)
Draws a cardinal spline through a specified array of
PointF structures. |
void |
Graphics.drawCurve(Pen pen,
PointF[] points,
float tension)
Draws a cardinal spline through a specified array of
PointF structures using a specified tension. |
void |
Graphics.drawCurve(Pen pen,
PointF[] points,
int offset,
int numberOfSegments)
Draws a cardinal spline through a specified array of
PointF structures. |
void |
Graphics.drawCurve(Pen pen,
PointF[] points,
int offset,
int numberOfSegments,
float tension)
Draws a cardinal spline through a specified array of
PointF structures using a specified tension. |
void |
Graphics.drawImage(Image sourceImage,
PointF point)
Draws the specified
Image , using its original physical size, at the specified location. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect,
int srcUnit)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawImage(Image image,
PointF[] destPoints,
RectangleF srcRect,
int srcUnit,
ImageAttributes imageAttributes)
Draws the specified portion of the specified
image at the specified location and with the specified size. |
void |
Graphics.drawLine(Pen pen,
PointF point1,
PointF point2)
Draws a line connecting two
PointF structures. |
void |
Graphics.drawLines(Pen pen,
PointF[] points)
Draws a series of line segments that connect an array of
PointF structures. |
void |
Graphics.drawPolygon(Pen pen,
PointF[] points)
Draws a polygon defined by an array of
PointF structures. |
void |
Graphics.drawString(String s,
Font font,
Brush brush,
PointF point)
Draws the specified text string at the specified location with the specified
com.aspose.imaging.Brush and com.aspose.imaging.Font objects. |
void |
Graphics.drawString(String s,
Font font,
Brush brush,
PointF point,
StringFormat format)
Draws the specified text string at the specified location with the specified
com.aspose.imaging.Brush and com.aspose.imaging.Font objects using the formatting attributes of the specified com.aspose.imaging.stringFormat . |
void |
Graphics.fillClosedCurve(Brush brush,
PointF[] points)
Fills the interior of a closed cardinal spline curve defined by an array of
com.aspose.imaging.PointF structures. |
void |
Graphics.fillClosedCurve(Brush brush,
PointF[] points,
int fillmode)
Fills the interior of a closed cardinal spline curve defined by an array of
com.aspose.imaging.PointF structures using the specified fill mode. |
void |
Graphics.fillClosedCurve(Brush brush,
PointF[] points,
int fillmode,
float tension)
Fills the interior of a closed cardinal spline curve defined by an array of
com.aspose.imaging.PointF structures using the specified fill mode and tension. |
void |
Graphics.fillPolygon(Brush brush,
PointF[] points)
Fills the interior of a polygon defined by an array of points specified by
com.aspose.imaging.PointF structures and FillMode.Alternate . |
void |
Graphics.fillPolygon(Brush brush,
PointF[] points,
int fillMode)
Fills the interior of a polygon defined by an array of points specified by
com.aspose.imaging.PointF structures using the specified fill mode. |
static RectangleF |
RectangleF.fromPoints(PointF point1,
PointF point2)
Creates a new
Rectangle from two points specified. |
static boolean |
PointF.isEquals(PointF obj1,
PointF obj2) |
boolean |
GraphicsPath.isOutlineVisible(PointF point,
Pen pen)
Indicates whether the specified point is contained within (under) the outline of this
com.aspose.imaging.GraphicsPath when drawn with the specified com.aspose.imaging.pen . |
boolean |
GraphicsPath.isOutlineVisible(PointF pt,
Pen pen,
Graphics graphics)
Indicates whether the specified point is contained within (under) the outline of this
com.aspose.imaging.GraphicsPath when drawn with the specified com.aspose.imaging.Pen and using the specified com.aspose.imaging.graphics . |
boolean |
Region.isVisible(PointF point)
Tests whether the specified
com.aspose.imaging.PointF structure is contained within this com.aspose.imaging.region . |
boolean |
GraphicsPath.isVisible(PointF point)
Indicates whether the specified point is contained within this
com.aspose.imaging.graphicsPath . |
boolean |
Region.isVisible(PointF point,
Graphics g)
Tests whether the specified
com.aspose.imaging.PointF structure is contained within this com.aspose.imaging.Region when drawn using the specified com.aspose.imaging.graphics . |
boolean |
GraphicsPath.isVisible(PointF pt,
Graphics graphics)
Indicates whether the specified point is contained within this
com.aspose.imaging.graphicsPath . |
void |
RectangleF.offset(PointF pos)
Adjusts the location of this rectangle by the specified amount.
|
static PointF |
PointF.op_Addition(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by a given Aspose.Imaging.Size . |
static PointF |
PointF.op_Addition(PointF point,
SizeF size)
Translates the
Aspose.Imaging.PointF by the specified Aspose.Imaging.SizeF . |
static boolean |
PointF.op_Equality(PointF point1,
PointF point2)
Compares two
Aspose.Imaging.PointF structures. |
static boolean |
PointF.op_Inequality(PointF point1,
PointF point2)
Determines whether the coordinates of the specified points are not equal.
|
static PointF |
PointF.op_Subtraction(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by the negative of a given Aspose.Imaging.Size . |
static PointF |
PointF.op_Subtraction(PointF point,
SizeF size)
Translates a
Aspose.Imaging.PointF by the negative of a specified Aspose.Imaging.SizeF . |
void |
Matrix.rotateAt(float angle,
PointF point)
Applies a clockwise rotation about the specified point to this Matrix in the default (Prepend) order.
|
void |
Matrix.rotateAt(float angle,
PointF point,
int order)
Applies a clockwise rotation about the specified point to this Matrix in the specified order.
|
static Point |
Point.round(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point object by rounding the Aspose.Imaging.Point values to the nearest integer. |
void |
RectangleF.setLocation(PointF value)
Gets or sets the coordinates of the upper-left corner of this
Aspose.Imaging.RectangleF structure. |
static PointF |
PointF.subtract(PointF point,
Size size)
Translates a
Aspose.Imaging.PointF by the negative of a specified size. |
static PointF |
PointF.subtract(PointF point,
SizeF size)
Translates a
Aspose.Imaging.PointF by the negative of a specified size. |
void |
Matrix.transformPoints(PointF[] points)
Applies the geometric transform represented by this
Matrix to a specified array of points. |
static Point |
Point.truncate(PointF point)
Converts the specified
Aspose.Imaging.PointF to a Aspose.Imaging.Point by truncating the values of the Aspose.Imaging.Point . |
void |
GraphicsPath.warp(PointF[] destPoints,
RectangleF srcRect)
Applies a warp transform, defined by a rectangle and a parallelogram, to this
com.aspose.imaging.graphicsPath . |
void |
GraphicsPath.warp(PointF[] destPoints,
RectangleF srcRect,
Matrix matrix)
Applies a warp transform, defined by a rectangle and a parallelogram, to this
com.aspose.imaging.graphicsPath . |
void |
GraphicsPath.warp(PointF[] destPoints,
RectangleF srcRect,
Matrix matrix,
int warpMode)
Applies a warp transform, defined by a rectangle and a parallelogram, to this
com.aspose.imaging.graphicsPath . |
void |
GraphicsPath.warp(PointF[] destPoints,
RectangleF srcRect,
Matrix matrix,
int warpMode,
float flatness)
Applies a warp transform, defined by a rectangle and a parallelogram, to this
com.aspose.imaging.graphicsPath . |
Constructor and Description |
---|
Matrix(RectangleF rect,
PointF[] plgpts)
Initializes a new instance of the
Aspose.Imaging.Matrix class to the geometric transform defined by the specified rectangle and array of points. |
RectangleF(PointF location,
SizeF size)
Initializes a new instance of the
Aspose.Imaging.RectangleF structure with the specified location and size. |
SizeF(PointF point)
Initializes a new instance of the
Aspose.Imaging.SizeF structure from the specified Aspose.Imaging.PointF . |
Modifier and Type | Method and Description |
---|---|
PointF |
PathGradientBrushBase.getCenterPoint()
Gets or sets the center point of the path gradient.
|
PointF |
PathGradientBrushBase.getFocusScales()
Gets the focus point for the gradient falloff.
|
PointF[] |
PathGradientBrushBase.getPathPoints()
Gets the path points this brush was build upon.
|
Modifier and Type | Method and Description |
---|---|
void |
PathGradientBrushBase.setCenterPoint(PointF value)
Gets or sets the center point of the path gradient.
|
void |
PathGradientBrushBase.setFocusScales(PointF value)
Gets or sets the focus point for the gradient falloff.
|
Constructor and Description |
---|
LinearGradientBrush(PointF point1,
PointF point2,
Color color1,
Color color2)
Initializes a new instance of the
LinearGradientBrush class with the specified points and colors. |
LinearMulticolorGradientBrush(PointF point1,
PointF point2)
Initializes a new instance of the
LinearMulticolorGradientBrush class with the specified points. |
PathGradientBrush(PointF[] points)
Initializes a new instance of the
PathGradientBrush class with the specified points. |
PathGradientBrush(PointF[] points,
int wrapMode)
Initializes a new instance of the
PathGradientBrush class with the specified points and wrap mode. |
PathMulticolorGradientBrush(PointF[] points)
Initializes a new instance of the
PathMulticolorGradientBrush class with the specified points. |
PathMulticolorGradientBrush(PointF[] points,
int wrapMode)
Initializes a new instance of the
PathMulticolorGradientBrush class with the specified points and wrap mode. |
Modifier and Type | Method and Description |
---|---|
static PointF[] |
PointExtensions.toPointsArray(Point[] points)
Converts the
Point array to the PointF array. |
Modifier and Type | Method and Description |
---|---|
static Point2D.Float |
PointExtensions.toGdiPoint(PointF point)
Converts the
PointF to System.Drawing.PointF . |
static Point2D.Float[] |
PointExtensions.toGdiPoints(PointF[] points)
Converts the
PointF array to the System.Drawing.PointF array. |
Modifier and Type | Method and Description |
---|---|
PointF |
PointD.toPointF() |
Modifier and Type | Method and Description |
---|---|
void |
PointD.fromPointF(PointF point)
Converts
PointD to the Point2D.Float structure. |
Modifier and Type | Method and Description |
---|---|
PointF[] |
CmxTextBlockSpec.getCharLocations()
Gets the character locations.
|
Modifier and Type | Method and Description |
---|---|
void |
CmxTextBlockSpec.setCharLocations(PointF[] value)
Sets the character locations.
|
Modifier and Type | Method and Description |
---|---|
PointF[] |
EmfPlusBoundaryPointData.getBoundaryPointData()
Gets or sets an array of BoundaryPointCount EmfPlusPointF objects that specify the boundary of the brush.
|
PointF |
EmfPlusPathGradientBrushData.getCenterPointF()
Gets or sets EmfPlusARGB object (section 2.2.2.1) that specifies the center color of the path gradient brush,
which is the color that appears at the center point of the brush.
|
PointF |
EmfPlusCustomLineCapData.getFillHotSpot()
Gets or sets EmfPlusPointF object that is not currently used.
|
PointF |
EmfPlusCustomLineCapArrowData.getFillHotSpot()
Gets or sets EmfPlusPointF object that is not currently used.
|
PointF |
EmfPlusCustomLineCapArrowData.getLineHotSpot()
Gets or sets an EmfPlusPointF object that is not currently used.
|
PointF[] |
EmfPlusPath.getPathPoints()
Gets or sets array of path points
An array of PathPointCount points that specify the path.
|
PointF |
EmfPlusCustomLineCapData.getStrokeHotSpot()
Gets or sets EmfPlusPointF object that is not currently used.
|
Modifier and Type | Method and Description |
---|---|
void |
EmfPlusBoundaryPointData.setBoundaryPointData(PointF[] value)
Gets or sets an array of BoundaryPointCount EmfPlusPointF objects that specify the boundary of the brush.
|
void |
EmfPlusPathGradientBrushData.setCenterPointF(PointF value)
Gets or sets EmfPlusARGB object (section 2.2.2.1) that specifies the center color of the path gradient brush,
which is the color that appears at the center point of the brush.
|
void |
EmfPlusCustomLineCapData.setFillHotSpot(PointF value)
Gets or sets EmfPlusPointF object that is not currently used.
|
void |
EmfPlusCustomLineCapArrowData.setFillHotSpot(PointF value)
Gets or sets EmfPlusPointF object that is not currently used.
|
void |
EmfPlusCustomLineCapArrowData.setLineHotSpot(PointF value)
Gets or sets an EmfPlusPointF object that is not currently used.
|
void |
EmfPlusPath.setPathPoints(PointF[] value)
Gets or sets array of path points
An array of PathPointCount points that specify the path.
|
void |
EmfPlusCustomLineCapData.setStrokeHotSpot(PointF value)
Gets or sets EmfPlusPointF object that is not currently used.
|
Modifier and Type | Method and Description |
---|---|
PointF[] |
EmfPlusDrawDriverString.getGlyphPos()
Gets the glyph positions array
An array of EmfPlusPointF objects (section 2.2.2.36) that specify the output position of each character glyph.
|
PointF[] |
EmfPlusFillPolygon.getPointData()
Gets or sets the point data
An array of Count points that define the vertices of the polygon.
|
PointF[] |
EmfPlusFillClosedCurve.getPointData()
Gets or sets the point data
An array of Count points that specify the endpoints of the lines that define the spline.
|
PointF[] |
EmfPlusDrawLines.getPointData()
Gets or sets the point data
An array of Count points that specify the starting and ending points of the lines to be drawn.
|
PointF[] |
EmfPlusDrawImagePoints.getPointData()
Gets or sets an array of Count points that specify three points of a parallelogram.
|
PointF[] |
EmfPlusDrawCurve.getPointData()
Gets or sets an array of either 32-bit signed integers or 32-bit floating-point numbers of
Count length that defines coordinate values of the endpoints of the lines to be stroked.
|
PointF[] |
EmfPlusDrawClosedCurve.getPointData()
Gets or sets the point data
An array of Count points that specify the endpoints of the lines that define the spline.
|
PointF[] |
EmfPlusDrawBeziers.getPointData()
Gets or sets the point data
An array of Count points that specify the starting, ending, and control points of the Bezier curves.
|
Modifier and Type | Method and Description |
---|---|
void |
EmfPlusDrawDriverString.setGlyphPos(PointF[] value)
Sets the glyph positions array
An array of EmfPlusPointF objects (section 2.2.2.36) that specify the output position of each character glyph.
|
void |
EmfPlusFillPolygon.setPointData(PointF[] value)
Gets or sets the point data
An array of Count points that define the vertices of the polygon.
|
void |
EmfPlusFillClosedCurve.setPointData(PointF[] value)
Gets or sets the point data
An array of Count points that specify the endpoints of the lines that define the spline.
|
void |
EmfPlusDrawLines.setPointData(PointF[] value)
Gets or sets the point data
An array of Count points that specify the starting and ending points of the lines to be drawn.
|
void |
EmfPlusDrawImagePoints.setPointData(PointF[] value)
Gets or sets an array of Count points that specify three points of a parallelogram.
|
void |
EmfPlusDrawCurve.setPointData(PointF[] value)
Gets or sets an array of either 32-bit signed integers or 32-bit floating-point numbers of
Count length that defines coordinate values of the endpoints of the lines to be stroked.
|
void |
EmfPlusDrawClosedCurve.setPointData(PointF[] value)
Gets or sets the point data
An array of Count points that specify the endpoints of the lines that define the spline.
|
void |
EmfPlusDrawBeziers.setPointData(PointF[] value)
Gets or sets the point data
An array of Count points that specify the starting, ending, and control points of the Bezier curves.
|
Modifier and Type | Method and Description |
---|---|
void |
MetafileRecorderGraphics2D.rotateTransform(float angle,
PointF center,
int order)
Applies the specified rotation to the transformation matrix of this Graphics in the specified order.
|
Modifier and Type | Method and Description |
---|---|
PointF |
OdMoveTo.getCoordinates()
Gets or sets the coordinates.
|
PointF |
OdLineTo.getCoordinates()
Gets or sets the coordinates.
|
PointF |
OdEllipticalQundrant.getPoint()
Gets or sets the point.
|
PointF |
OdMeasure.getPoint1()
Gets or sets the point1.
|
PointF |
OdLine.getPoint1()
Gets or sets the point1.
|
PointF |
OdConnector.getPoint1()
Gets or sets the point1.
|
PointF |
OdArc.getPoint1()
Gets or sets the point1.
|
PointF |
OdMeasure.getPoint2()
Gets or sets the point2.
|
PointF |
OdLine.getPoint2()
Gets or sets the point2.
|
PointF |
OdConnector.getPoint2()
Gets or sets the point2.
|
PointF |
OdArc.getPoint2()
Gets or sets the point2.
|
PointF |
OdMeasure.getPoint3()
Gets or sets the point3.
|
PointF |
OdArc.getPoint3()
Gets or sets the point3.
|
PointF |
OdMeasure.getPoint4()
Gets or sets the point4.
|
PointF |
OdArc.getPoint4()
Gets or sets the point4.
|
PointF[] |
OdPolygon.getPoints()
Gets or sets the points.
|
PointF[] |
OdCurveTo.getPoints()
Gets or sets the points.
|
Modifier and Type | Method and Description |
---|---|
void |
OdMoveTo.setCoordinates(PointF value)
Gets or sets the coordinates.
|
void |
OdLineTo.setCoordinates(PointF value)
Gets or sets the coordinates.
|
void |
OdEllipticalQundrant.setPoint(PointF value)
Gets or sets the point.
|
void |
OdMeasure.setPoint1(PointF value)
Gets or sets the point1.
|
void |
OdLine.setPoint1(PointF value)
Gets or sets the point1.
|
void |
OdConnector.setPoint1(PointF value)
Gets or sets the point1.
|
void |
OdArc.setPoint1(PointF value)
Gets or sets the point1.
|
void |
OdMeasure.setPoint2(PointF value)
Gets or sets the point2.
|
void |
OdLine.setPoint2(PointF value)
Gets or sets the point2.
|
void |
OdConnector.setPoint2(PointF value)
Gets or sets the point2.
|
void |
OdArc.setPoint2(PointF value)
Gets or sets the point2.
|
void |
OdMeasure.setPoint3(PointF value)
Gets or sets the point3.
|
void |
OdArc.setPoint3(PointF value)
Gets or sets the point3.
|
void |
OdMeasure.setPoint4(PointF value)
Gets or sets the point4.
|
void |
OdArc.setPoint4(PointF value)
Gets or sets the point4.
|
void |
OdPolygon.setPoints(PointF[] value)
Gets or sets the points.
|
void |
OdCurveTo.setPoints(PointF[] value)
Gets or sets the points.
|
Modifier and Type | Method and Description |
---|---|
static com.aspose.ms.System.Collections.Generic.IGenericEnumerable<OSTypeStructure> |
PatternFillSettings.generateLfx2ResourceNodes(String pointType,
Color color,
String patternName,
String identifier,
double scale,
boolean linked,
PointF offset)
Generates the LFX2 resource nodes.
|
Modifier and Type | Method and Description |
---|---|
void |
SvgGraphics2D.drawCubicBezier(Pen pen,
PointF pt1,
PointF pt2,
PointF pt3,
PointF pt4)
Draws the cubic bezier.
|
Modifier and Type | Method and Description |
---|---|
PointF |
TextShape.getCenter()
Gets the shape's center.
|
PointF |
RectangleProjectedShape.getCenter()
Gets the shape's center.
|
PointF |
PolygonShape.getCenter()
Gets the shape's center.
|
PointF |
CurveShape.getCenter()
Gets the shape's center.
|
PointF |
BezierShape.getCenter()
Gets the shape's center.
|
PointF |
PolygonShape.getEndPoint()
Gets the ending shape point.
|
PointF |
BezierShape.getEndPoint()
Gets the ending shape point.
|
PointF |
ArcShape.getEndPoint()
Gets the ending shape point.
|
PointF |
RectangleProjectedShape.getLeftBottom()
Gets the left bottom rectangle point.
|
PointF |
RectangleProjectedShape.getLeftTop()
Gets the left top rectangle point.
|
PointF[] |
PolygonShape.getPoints()
Gets or sets the curve points.
|
PointF |
RectangleProjectedShape.getRightBottom()
Gets the right bottom rectangle point.
|
PointF |
RectangleProjectedShape.getRightTop()
Gets the right top rectangle point.
|
PointF |
PolygonShape.getStartPoint()
Gets the starting shape point.
|
PointF |
ArcShape.getStartPoint()
Gets the starting shape point.
|
Modifier and Type | Method and Description |
---|---|
void |
PolygonShape.setPoints(PointF[] value)
Gets or sets the curve points.
|
Constructor and Description |
---|
BezierShape(PointF[] points)
Initializes a new instance of the
BezierShape class. |
BezierShape(PointF[] points,
boolean isClosed)
Initializes a new instance of the
BezierShape class. |
CurveShape(PointF[] points)
Initializes a new instance of the
CurveShape class. |
CurveShape(PointF[] points,
boolean isClosed)
Initializes a new instance of the
CurveShape class. |
CurveShape(PointF[] points,
float tension)
Initializes a new instance of the
CurveShape class. |
CurveShape(PointF[] points,
float tension,
boolean isClosed)
Initializes a new instance of the
CurveShape class. |
PolygonShape(PointF[] points)
Initializes a new instance of the
PolygonShape class. |
PolygonShape(PointF[] points,
boolean isClosed)
Initializes a new instance of the
PolygonShape class. |
Modifier and Type | Method and Description |
---|---|
PointF |
LineSegment.getEndPoint()
Gets the ending point.
|
PointF |
BezierSegment.getFirstControlPoint()
Gets the first control point of a bezier spline.
|
PointF |
BezierSegment.getSecondControlPoint()
Gets the second control point of a bezier spline.
|
PointF |
LineSegment.getStartPoint()
Gets the starting point.
|
Constructor and Description |
---|
BezierSegment(PointF startPoint,
PointF firstControlPoint,
PointF secondControlPoint,
PointF endPoint)
Initializes a new instance of the
BezierSegment class. |
LineSegment(PointF startPoint,
PointF endPoint)
Initializes a new instance of the
LineSegment class. |