Uses of Class
com.aspose.imaging.PointF

Packages that use PointF
com.aspose.imaging   
com.aspose.imaging.brushes   
com.aspose.imaging.interfaces   
com.aspose.imaging.shapes   
com.aspose.imaging.shapesegments   
 

Uses of PointF in com.aspose.imaging
 

Methods in com.aspose.imaging that return PointF
static PointF PointF.add(PointF point, Size size)
           Translates a given PointF by the specified Size.
static PointF PointF.add(PointF point, SizeF size)
           Translates a given PointF by a specified SizeF.
 PointF PointF.Clone()
           
abstract  PointF Shape.getCenter()
           Gets the shape's center.
static PointF PointF.getEmpty()
           Gets a new instance of the PointF structure that has PointF.X and PointF.Y values set to zero.
abstract  PointF ShapeSegment.getEndPoint()
           Gets the ending point.
 PointF RectangleF.getLocation()
           Gets the coordinates of the upper-left corner of this RectangleF structure.
abstract  PointF ShapeSegment.getStartPoint()
           Gets the starting point.
static PointF PointF.op_Addition(PointF point, Size size)
           Translates a PointF by a given Size.
static PointF PointF.op_Addition(PointF point, SizeF size)
           Translates the PointF by the specified SizeF.
static PointF PointF.op_Subtraction(PointF point, Size size)
           Translates a PointF by the negative of a given Size.
static PointF PointF.op_Subtraction(PointF point, SizeF size)
           Translates a PointF by the negative of a specified SizeF.
static PointF PointF.subtract(PointF point, Size size)
           Translates a PointF by the negative of a specified size.
static PointF PointF.subtract(PointF point, SizeF size)
           Translates a PointF by the negative of a specified size.
 PointF SizeF.toPointF()
           Converts a SizeF to a PointF.
static PointF Point.toPointF(Point point)
           Converts the specified Point structure to the PointF structure.
static PointF SizeF.toPointF(SizeF size)
           Converts the specified SizeF to a PointF.
 

Methods in com.aspose.imaging with parameters of type PointF
static PointF PointF.add(PointF point, Size size)
           Translates a given PointF by the specified Size.
static PointF PointF.add(PointF point, SizeF size)
           Translates a given PointF by a specified SizeF.
static Point Point.ceiling(PointF point)
           Converts the specified PointF to a Point by rounding the values of the 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 RectangleF structure.
 void Graphics.drawBezier(Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4)
           Draws a Bezier spline defined by four PointF structures.
 void Graphics.drawBeziers(Pen pen, PointF[] points)
           Draws a series of Bezier 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.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(java.lang.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(java.lang.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.
static boolean PointF.equals(PointF obj1, PointF obj2)
           
 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 froms two points specified.
 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 GraphicsPath.isVisible(PointF point)
           Indicates whether the specified point is contained within this com.aspose.imaging.GraphicsPath.
 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 pt, Graphics graphics)
           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.
 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 PointF by a given Size.
static PointF PointF.op_Addition(PointF point, SizeF size)
           Translates the PointF by the specified SizeF.
static boolean PointF.op_Equality(PointF point1, PointF point2)
           Compares two 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 PointF by the negative of a given Size.
static PointF PointF.op_Subtraction(PointF point, SizeF size)
           Translates a PointF by the negative of a specified 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 PointF to a Point object by rounding the Point values to the nearest integer.
 void RectangleF.setLocation(PointF value)
           Sets the coordinates of the upper-left corner of this RectangleF structure.
static PointF PointF.subtract(PointF point, Size size)
           Translates a PointF by the negative of a specified size.
static PointF PointF.subtract(PointF point, SizeF size)
           Translates a 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 PointF to a Point by truncating the values of the 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.
 

Constructors in com.aspose.imaging with parameters of type PointF
Matrix(RectangleF rect, PointF[] plgpts)
           Initializes a new instance of the 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 RectangleF structure with the specified location and size.
SizeF(PointF point)
           Initializes a new instance of the SizeF structure from the specified PointF.
 

Uses of PointF in com.aspose.imaging.brushes
 

Methods in com.aspose.imaging.brushes that return PointF
 PointF PathGradientBrushBase.getCenterPoint()
           Gets 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.
 

Methods in com.aspose.imaging.brushes with parameters of type PointF
 void PathGradientBrushBase.setCenterPoint(PointF value)
           Sets the center point of the path gradient.
 void PathGradientBrushBase.setFocusScales(PointF value)
           Sets the focus point for the gradient falloff.
 

Constructors in com.aspose.imaging.brushes with parameters of type PointF
LinearGradientBrush(PointF point1, PointF point2, Color color1, Color color2)
           Initializes a new instance of the LinearGradientBrush class with the specified points and colors.
LinearGradientBrushBase(PointF point1, PointF point2)
           Initializes a new instance of the LinearGradientBrushBase class.
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.
PathGradientBrushBase(PointF[] points)
           Initializes a new instance of the PathGradientBrushBase class with the specified points.
PathGradientBrushBase(PointF[] points, int wrapMode)
           Initializes a new instance of the PathGradientBrushBase 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.
 

Uses of PointF in com.aspose.imaging.interfaces
 

Methods in com.aspose.imaging.interfaces that return PointF
 PointF IOrderedShape.getEndPoint()
           
 PointF IOrderedShape.getStartPoint()
           
 

Uses of PointF in com.aspose.imaging.shapes
 

Methods in com.aspose.imaging.shapes that return PointF
 PointF BezierShape.getCenter()
           Gets the shape's center.
 PointF CurveShape.getCenter()
           Gets the shape's center.
 PointF PolygonShape.getCenter()
           Gets the shape's center.
 PointF RectangleProjectedShape.getCenter()
           Gets the shape's center.
 PointF TextShape.getCenter()
           Gets the shape's center.
 PointF ArcShape.getEndPoint()
           Gets the ending shape point.
 PointF BezierShape.getEndPoint()
           Gets the ending shape point.
 PointF PolygonShape.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 the curve points.
 PointF RectangleProjectedShape.getRightBottom()
           Gets the right bottom rectangle point.
 PointF RectangleProjectedShape.getRightTop()
           Gets the right top rectangle point.
 PointF ArcShape.getStartPoint()
           Gets the starting shape point.
 PointF PolygonShape.getStartPoint()
           Gets the starting shape point.
 

Methods in com.aspose.imaging.shapes with parameters of type PointF
 void PolygonShape.setPoints(PointF[] value)
           Sets the curve points.
 

Constructors in com.aspose.imaging.shapes with parameters of type PointF
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.
 

Uses of PointF in com.aspose.imaging.shapesegments
 

Methods in com.aspose.imaging.shapesegments that return PointF
 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.
 

Constructors in com.aspose.imaging.shapesegments with parameters of type PointF
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.