C# Class System.Drawing.Graphics

Inheritance: System.MarshalByRefObject, IDeviceContext, IDisposable
显示文件 Open project: mono/sysdrawing-coregraphics Class Usage Examples

Protected Properties

Property Type Description
eta1 double
eta2 double
isPieSlice bool
xF1 double
xF2 double
yF1 double
yF2 double

Public Methods

Method Description
BeginContainer ( ) : GraphicsContainer
BeginContainer ( Rectangle dstRect, Rectangle srcRect, GraphicsUnit unit ) : GraphicsContainer
BeginContainer ( RectangleF dstRect, RectangleF srcRect, GraphicsUnit unit ) : GraphicsContainer
Clear ( Color color ) : void
Dispose ( ) : void
DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
DrawArc ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
DrawBezier ( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 ) : void
DrawBezier ( Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4 ) : void
DrawBezier ( Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4 ) : void
DrawBeziers ( Pen pen, Point points ) : void
DrawBeziers ( Pen pen, PointF points ) : void
DrawClosedCurve ( Pen pen, Point points ) : void
DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
DrawClosedCurve ( Pen pen, PointF points ) : void
DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
DrawCurve ( Pen pen, Point points, float tension = 0.5f ) : void
DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension = 0.5f ) : void
DrawCurve ( Pen pen, PointF points, float tension = 0.5f ) : void
DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension = 0.5f ) : void
DrawEllipse ( Pen pen, Rectangle rect ) : void
DrawEllipse ( Pen pen, RectangleF rect ) : void
DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
DrawEllipse ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawEllipticalArc ( PointF center, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
DrawIcon ( Icon icon, Rectangle targetRect ) : void
DrawIcon ( Icon icon, int x, int y ) : void
DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
DrawImage ( Image image, Point destPoints ) : void

Draws the specified Image at the specified location and with the specified shape and size. The destPoints parameter specifies three points of a parallelogram. The three Point structures represent the upper-left, upper-right, and lower-left corners of the parallelogram. The fourth point is extrapolated from the first three to form a parallelogram. The image represented by the image parameter is scaled and sheared to fit the shape of the parallelogram specified by the destPoints parameters.

DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
DrawImage ( Image image, PointF point ) : void

Draws the specified Image, using its original physical size, at the specified location.

DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
DrawImage ( Image image, Rectangle rect ) : void

Draws the specified Image at the specified location and with the specified size. The image represented by the image object is scaled to the dimensions of the rect rectangle.

DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback ) : void
DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
DrawImage ( Image image, RectangleF rect ) : void

Draws the specified Image at the specified location and with the specified size.

DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.

DrawImage ( Image image, float x, float y ) : void

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.

DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void

Draws a portion of an image at a specified location.

DrawImage ( Image image, float x, float y, float width, float height ) : void
DrawImage ( Image image, int x, int y ) : void

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.

DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void

Draws a portion of an image at a specified location.

DrawImage ( Image image, int x, int y, int width, int height ) : void

Draws the specified Image at the specified location and with the specified size.

DrawImageUnscaled ( Image image, Point point ) : void
DrawImageUnscaled ( Image image, Rectangle rect ) : void
DrawImageUnscaled ( Image image, int x, int y ) : void
DrawImageUnscaled ( Image image, int x, int y, int width, int height ) : void
DrawImageUnscaledAndClipped ( Image image, Rectangle rect ) : void
DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
DrawLine ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawLines ( Pen pen, Point points ) : void
DrawLines ( Pen pen, PointF points ) : void
DrawPath ( Pen pen, GraphicsPath path ) : void
DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
DrawPie ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
DrawPolygon ( Pen pen, Point points ) : void
DrawPolygon ( Pen pen, PointF points ) : void
DrawRectangle ( Pen pen, Rectangle rect ) : void
DrawRectangle ( Pen pen, float x1, float y1, float x2, float y2 ) : void
DrawRectangle ( Pen pen, int x1, int y1, int x2, int y2 ) : void
DrawRectangles ( Pen pen, Rectangle rects ) : void
DrawRectangles ( Pen pen, RectangleF rects ) : void
DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format = null ) : void
DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format = null ) : void
DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format = null ) : void
EndContainer ( GraphicsContainer container ) : void
ExcludeClip ( Rectangle rect ) : void
ExcludeClip ( RectangleF rect ) : void
ExcludeClip ( Region region ) : void
FillClosedCurve ( Brush brush, Point points ) : void
FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension = 0.5f ) : void
FillClosedCurve ( Brush brush, PointF points ) : void
FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension = 0.5f ) : void
FillEllipse ( Brush brush, RectangleF rect ) : void
FillEllipse ( Brush brush, float x1, float y1, float x2, float y2 ) : void
FillEllipse ( Brush brush, int x1, int y1, int x2, int y2 ) : void
FillPath ( Brush brush, GraphicsPath path ) : void
FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
FillPie ( Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
FillPie ( Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
FillPolygon ( Brush brush, Point points, FillMode fillMode = FillMode.Alternate ) : void
FillPolygon ( Brush brush, PointF points, FillMode fillMode = FillMode.Alternate ) : void
FillRectangle ( Brush brush, Rectangle rect ) : void
FillRectangle ( Brush brush, RectangleF rect ) : void
FillRectangle ( Brush brush, float x1, float y1, float x2, float y2 ) : void
FillRectangle ( Brush brush, int x1, int y1, int x2, int y2 ) : void
FillRectangles ( Brush brush, Rectangle rects ) : void
FillRectangles ( Brush brush, RectangleF rects ) : void
FillRegion ( Brush brush, Region region ) : void

Fills the interior of a region.

Flush ( ) : void
Flush ( FlushIntention intention ) : void
FromContext ( CGContext context ) : Graphics
FromContext ( CGContext context, float screenScale ) : Graphics
FromContext ( NSGraphicsContext context ) : Graphics
FromCurrentContext ( ) : Graphics
FromImage ( Image image ) : Graphics
GetNearestColor ( Color color ) : Color
Graphics ( CGContext context, bool flipped = true ) : AppKit
IntersectClip ( Rectangle rect ) : void
IntersectClip ( RectangleF rect ) : void
IntersectClip ( Region region ) : void
IsVisible ( Point point ) : bool
IsVisible ( PointF point ) : bool
IsVisible ( Rectangle rect ) : bool
IsVisible ( RectangleF rect ) : bool
IsVisible ( float x, float y ) : bool
IsVisible ( float x, float y, float width, float height ) : bool
IsVisible ( int x, int y ) : bool
IsVisible ( int x, int y, int width, int height ) : bool
MeasureCharacterRanges ( string text, Font font, RectangleF layoutRect, StringFormat stringFormat ) : Region[]
MeasureString ( string text, Font font ) : SizeF
MeasureString ( string text, Font font, PointF point, StringFormat stringFormat ) : SizeF
MeasureString ( string textg, Font font, RectangleF rect ) : SizeF
MeasureString ( string textg, Font font, SizeF layoutArea ) : SizeF
MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat, int &charactersFitted, int &linesFilled ) : SizeF
MeasureString ( string textg, Font font, int width ) : SizeF
MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
MultiplyTransform ( Matrix matrix ) : void
MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
ResetClip ( ) : void
ResetTransform ( ) : void
Restore ( GraphicsState state ) : void
RotateTransform ( float angle ) : void
RotateTransform ( float angle, MatrixOrder order ) : void
Save ( ) : GraphicsState
ScaleTransform ( float sx, float sy ) : void
ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
SetClip ( Graphics g ) : void
SetClip ( Graphics g, CombineMode combineMode ) : void
SetClip ( GraphicsPath graphicsPath ) : void
SetClip ( GraphicsPath graphicsPath, CombineMode combineMode ) : void
SetClip ( Rectangle rect ) : void
SetClip ( Rectangle rect, CombineMode combineMode ) : void
SetClip ( RectangleF rect ) : void
SetClip ( RectangleF rect, CombineMode combineMode ) : void
SetClip ( Region region, CombineMode combineMode ) : void
TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, Point pts ) : void
TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF pts ) : void
TranslateClip ( float dx, float dy ) : void
TranslateClip ( int dx, int dy ) : void
TranslateTransform ( float tx, float ty ) : void
TranslateTransform ( float tx, float ty, MatrixOrder order ) : void
drawEllipticalArcToContext ( int degree, double threshold ) : void

Private Methods

Method Description
ConvertPoints ( Point points ) : System.Drawing.PointF[]
CurveTo ( float x1, float y1, float x2, float y2, float x3, float y3 ) : void
Dispose ( bool disposing ) : void
DrawEllipticalArc ( Rectangle arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( RectangleF arcRect, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( double cx, double cy, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
DrawEllipticalArc ( float x, float y, float width, float height, double lambda1, double lambda2, bool isPieSlice ) : void
DrawImage ( RectangleF rect, CGImage image, CGAffineTransform transform ) : void
FillBrush ( Brush brush, FillMode fillMode = FillMode.Alternate ) : void
Graphics ( ) : AppKit
Graphics ( CGContext context ) : AppKit
Graphics ( CGContext context, nfloat screenScale ) : AppKit
Graphics ( NSGraphicsContext context ) : AppKit
GraphicsUnitConvertX ( float x ) : float
GraphicsUnitConvertY ( float y ) : float
InitializeContext ( CGContext context ) : void
InitializeImagingContext ( ) : void
LineTo ( PointF point ) : void
LineTo ( float x, float y ) : void
MakeCurve ( PointF points, PointF tangents, int offset, int length, CurveType type ) : void
MoveTo ( PointF point ) : void
MoveTo ( float x, float y ) : void
PlotPath ( GraphicsPath path ) : void
PolygonSetup ( PointF points ) : void
RectanglePath ( RectangleF rectangle ) : void
RectanglePath ( float x1, float y1, float x2, float y2 ) : void
Stroke ( Pen pen ) : void
StrokePen ( Pen pen ) : void
applyModelView ( ) : void
buildAttributedString ( string text, Font font, StringFormat format = null, Color fontColor = null ) : NSMutableAttributedString
computeFocii ( ) : void
estimateError ( int degree, double etaA, double etaB ) : double
initializeMatrix ( Matrix &matrix, bool isFlipped ) : void
make_arc ( CGContext graphics, bool start, float x, float y, float width, float height, float startAngle, float endAngle, bool antialiasing, bool isPieSlice ) : void
make_arcs ( CGContext graphics, float x, float y, float width, float height, float startAngle, float sweepAngle, bool convert_units, bool antialiasing, bool isPieSlice ) : void
radians ( float degrees ) : double
rationalFunction ( double x, double c ) : double
setupView ( ) : void

Method Details

BeginContainer() public method

public BeginContainer ( ) : GraphicsContainer
return GraphicsContainer

BeginContainer() public method

public BeginContainer ( Rectangle dstRect, Rectangle srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect Rectangle
srcRect Rectangle
unit GraphicsUnit
return GraphicsContainer

BeginContainer() public method

public BeginContainer ( RectangleF dstRect, RectangleF srcRect, GraphicsUnit unit ) : GraphicsContainer
dstRect RectangleF
srcRect RectangleF
unit GraphicsUnit
return GraphicsContainer

Clear() public method

public Clear ( Color color ) : void
color Color
return void

Dispose() public method

public Dispose ( ) : void
return void

DrawArc() public method

public DrawArc ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
return void

DrawArc() public method

public DrawArc ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
return void

DrawArc() public method

public DrawArc ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
pen Pen
x float
y float
width float
height float
startAngle float
sweepAngle float
return void

DrawArc() public method

public DrawArc ( Pen pen, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
pen Pen
x int
y int
width int
height int
startAngle int
sweepAngle int
return void

DrawBezier() public method

public DrawBezier ( Pen pen, Point pt1, Point pt2, Point pt3, Point pt4 ) : void
pen Pen
pt1 Point
pt2 Point
pt3 Point
pt4 Point
return void

DrawBezier() public method

public DrawBezier ( Pen pen, PointF pt1, PointF pt2, PointF pt3, PointF pt4 ) : void
pen Pen
pt1 PointF
pt2 PointF
pt3 PointF
pt4 PointF
return void

DrawBezier() public method

public DrawBezier ( Pen pen, float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
x3 float
y3 float
x4 float
y4 float
return void

DrawBeziers() public method

public DrawBeziers ( Pen pen, Point points ) : void
pen Pen
points Point
return void

DrawBeziers() public method

public DrawBeziers ( Pen pen, PointF points ) : void
pen Pen
points PointF
return void

DrawClosedCurve() public method

public DrawClosedCurve ( Pen pen, Point points ) : void
pen Pen
points Point
return void

DrawClosedCurve() public method

public DrawClosedCurve ( Pen pen, Point points, float tension, FillMode fillmode ) : void
pen Pen
points Point
tension float
fillmode FillMode
return void

DrawClosedCurve() public method

public DrawClosedCurve ( Pen pen, PointF points ) : void
pen Pen
points PointF
return void

DrawClosedCurve() public method

public DrawClosedCurve ( Pen pen, PointF points, float tension, FillMode fillmode ) : void
pen Pen
points PointF
tension float
fillmode FillMode
return void

DrawCurve() public method

public DrawCurve ( Pen pen, Point points, float tension = 0.5f ) : void
pen Pen
points Point
tension float
return void

DrawCurve() public method

public DrawCurve ( Pen pen, Point points, int offset, int numberOfSegments, float tension = 0.5f ) : void
pen Pen
points Point
offset int
numberOfSegments int
tension float
return void

DrawCurve() public method

public DrawCurve ( Pen pen, PointF points, float tension = 0.5f ) : void
pen Pen
points PointF
tension float
return void

DrawCurve() public method

public DrawCurve ( Pen pen, PointF points, int offset, int numberOfSegments, float tension = 0.5f ) : void
pen Pen
points PointF
offset int
numberOfSegments int
tension float
return void

DrawEllipse() public method

public DrawEllipse ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
return void

DrawEllipse() public method

public DrawEllipse ( Pen pen, RectangleF rect ) : void
pen Pen
rect RectangleF
return void

DrawEllipse() public method

public DrawEllipse ( Pen pen, float x, float y, float width, float height ) : void
pen Pen
x float
y float
width float
height float
return void

DrawEllipse() public method

public DrawEllipse ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
return void

DrawEllipticalArc() public method

public DrawEllipticalArc ( PointF center, double a, double b, double theta, double lambda1, double lambda2, bool isPieSlice ) : void
center PointF
a double
b double
theta double
lambda1 double
lambda2 double
isPieSlice bool
return void

DrawIcon() public method

public DrawIcon ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
return void

DrawIcon() public method

public DrawIcon ( Icon icon, int x, int y ) : void
icon Icon
x int
y int
return void

DrawIconUnstretched() public method

public DrawIconUnstretched ( Icon icon, Rectangle targetRect ) : void
icon Icon
targetRect Rectangle
return void

DrawImage() public method

Draws the specified Image at the specified location and with the specified shape and size. The destPoints parameter specifies three points of a parallelogram. The three Point structures represent the upper-left, upper-right, and lower-left corners of the parallelogram. The fourth point is extrapolated from the first three to form a parallelogram. The image represented by the image parameter is scaled and sheared to fit the shape of the parallelogram specified by the destPoints parameters.
public DrawImage ( Image image, Point destPoints ) : void
image Image Image.
destPoints Point Destination points.
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destPoints Point Destination points.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
return void

DrawImage() public method

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
return void

DrawImage() public method

public DrawImage ( Image image, Point destPoints, Rectangle srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
image Image
destPoints Point
srcRect Rectangle
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData int
return void

DrawImage() public method

Draws the specified Image, using its original physical size, at the specified location.
public DrawImage ( Image image, PointF point ) : void
image Image Image.
point PointF Point.
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The destPoints specifies a parallelogram with the first point specifying the upper left corner, second point specifying the upper right corner and the third point specifying the lower left corner. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destPoints PointF Destination points.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
return void

DrawImage() public method

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
return void

DrawImage() public method

public DrawImage ( Image image, PointF destPoints, RectangleF srcRect, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback, int callbackData ) : void
image Image
destPoints PointF
srcRect RectangleF
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData int
return void

DrawImage() public method

Draws the specified Image at the specified location and with the specified size. The image represented by the image object is scaled to the dimensions of the rect rectangle.
public DrawImage ( Image image, Rectangle rect ) : void
image Image Image.
rect Rectangle Rect.
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcX float Source x.
srcY float Source y.
srcWidth float Source width.
srcHeight float Source height.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, float srcX, float srcY, float srcWidth, float srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
image Image
destRect Rectangle
srcX float
srcY float
srcWidth float
srcHeight float
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData System.IntPtr
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The parameters srcX, srcY, srcWidth and srcHeight define the rectangular source portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit ) : void
image Image Image.
destRect Rectangle Destination rect.
srcX int Source x.
srcY int Source y.
srcWidth int Source width.
srcHeight int Source height.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttr, DrawImageAbort callback ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttr System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
return void

DrawImage() public method

public DrawImage ( Image image, Rectangle destRect, int srcX, int srcY, int srcWidth, int srcHeight, GraphicsUnit srcUnit, ImageAttributes imageAttrs, DrawImageAbort callback, IntPtr callbackData ) : void
image Image
destRect Rectangle
srcX int
srcY int
srcWidth int
srcHeight int
srcUnit GraphicsUnit
imageAttrs System.Drawing.Imaging.ImageAttributes
callback DrawImageAbort
callbackData System.IntPtr
return void

DrawImage() public method

Draws the specified Image at the specified location and with the specified size.
public DrawImage ( Image image, RectangleF rect ) : void
image Image Image.
rect RectangleF Rect.
return void

DrawImage() public method

Draws the specified portion of the specified Image at the specified location and with the specified size. The srcRect parameter specifies a rectangular portion of the image object to draw. This portion is scaled up or down (in the case where source rectangle overruns the bounds of the image) to fit inside the rectangle specified by the destRect parameter.
public DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
destRect RectangleF Destination rect.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.
public DrawImage ( Image image, float x, float y ) : void
image Image Image.
x float The x coordinate.
y float The y coordinate.
return void

DrawImage() public method

Draws a portion of an image at a specified location.
public DrawImage ( Image image, float x, float y, RectangleF srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
x float The x coordinate.
y float The y coordinate.
srcRect RectangleF Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

public DrawImage ( Image image, float x, float y, float width, float height ) : void
image Image
x float
y float
width float
height float
return void

DrawImage() public method

Draws the specified image, using its original physical size, at the location specified by a coordinate pair.
public DrawImage ( Image image, int x, int y ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
return void

DrawImage() public method

Draws a portion of an image at a specified location.
public DrawImage ( Image image, int x, int y, Rectangle srcRect, GraphicsUnit srcUnit ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
srcRect Rectangle Source rect.
srcUnit GraphicsUnit Source unit.
return void

DrawImage() public method

Draws the specified Image at the specified location and with the specified size.
public DrawImage ( Image image, int x, int y, int width, int height ) : void
image Image Image.
x int The x coordinate.
y int The y coordinate.
width int Width.
height int Height.
return void

DrawImageUnscaled() public method

public DrawImageUnscaled ( Image image, Point point ) : void
image Image
point Point
return void

DrawImageUnscaled() public method

public DrawImageUnscaled ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
return void

DrawImageUnscaled() public method

public DrawImageUnscaled ( Image image, int x, int y ) : void
image Image
x int
y int
return void

DrawImageUnscaled() public method

public DrawImageUnscaled ( Image image, int x, int y, int width, int height ) : void
image Image
x int
y int
width int
height int
return void

DrawImageUnscaledAndClipped() public method

public DrawImageUnscaledAndClipped ( Image image, Rectangle rect ) : void
image Image
rect Rectangle
return void

DrawLine() public method

public DrawLine ( Pen pen, Point pt1, Point pt2 ) : void
pen Pen
pt1 Point
pt2 Point
return void

DrawLine() public method

public DrawLine ( Pen pen, PointF pt1, PointF pt2 ) : void
pen Pen
pt1 PointF
pt2 PointF
return void

DrawLine() public method

public DrawLine ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
return void

DrawLine() public method

public DrawLine ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
return void

DrawLines() public method

public DrawLines ( Pen pen, Point points ) : void
pen Pen
points Point
return void

DrawLines() public method

public DrawLines ( Pen pen, PointF points ) : void
pen Pen
points PointF
return void

DrawPath() public method

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen Pen
path System.Drawing.Drawing2D.GraphicsPath
return void

DrawPie() public method

public DrawPie ( Pen pen, Rectangle rect, float startAngle, float sweepAngle ) : void
pen Pen
rect Rectangle
startAngle float
sweepAngle float
return void

DrawPie() public method

public DrawPie ( Pen pen, RectangleF rect, float startAngle, float sweepAngle ) : void
pen Pen
rect RectangleF
startAngle float
sweepAngle float
return void

DrawPie() public method

public DrawPie ( Pen pen, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
pen Pen
x float
y float
width float
height float
startAngle float
sweepAngle float
return void

DrawPolygon() public method

public DrawPolygon ( Pen pen, Point points ) : void
pen Pen
points Point
return void

DrawPolygon() public method

public DrawPolygon ( Pen pen, PointF points ) : void
pen Pen
points PointF
return void

DrawRectangle() public method

public DrawRectangle ( Pen pen, Rectangle rect ) : void
pen Pen
rect Rectangle
return void

DrawRectangle() public method

public DrawRectangle ( Pen pen, float x1, float y1, float x2, float y2 ) : void
pen Pen
x1 float
y1 float
x2 float
y2 float
return void

DrawRectangle() public method

public DrawRectangle ( Pen pen, int x1, int y1, int x2, int y2 ) : void
pen Pen
x1 int
y1 int
x2 int
y2 int
return void

DrawRectangles() public method

public DrawRectangles ( Pen pen, Rectangle rects ) : void
pen Pen
rects Rectangle
return void

DrawRectangles() public method

public DrawRectangles ( Pen pen, RectangleF rects ) : void
pen Pen
rects RectangleF
return void

DrawString() public method

public DrawString ( string s, Font font, Brush brush, PointF point, StringFormat format = null ) : void
s string
font Font
brush Brush
point PointF
format StringFormat
return void

DrawString() public method

public DrawString ( string s, Font font, Brush brush, RectangleF layoutRectangle, StringFormat format = null ) : void
s string
font Font
brush Brush
layoutRectangle RectangleF
format StringFormat
return void

DrawString() public method

public DrawString ( string s, Font font, Brush brush, float x, float y, StringFormat format = null ) : void
s string
font Font
brush Brush
x float
y float
format StringFormat
return void

EndContainer() public method

public EndContainer ( GraphicsContainer container ) : void
container GraphicsContainer
return void

ExcludeClip() public method

public ExcludeClip ( Rectangle rect ) : void
rect Rectangle
return void

ExcludeClip() public method

public ExcludeClip ( RectangleF rect ) : void
rect RectangleF
return void

ExcludeClip() public method

public ExcludeClip ( Region region ) : void
region Region
return void

FillClosedCurve() public method

public FillClosedCurve ( Brush brush, Point points ) : void
brush Brush
points Point
return void

FillClosedCurve() public method

public FillClosedCurve ( Brush brush, Point points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points Point
fillmode FillMode
tension float
return void

FillClosedCurve() public method

public FillClosedCurve ( Brush brush, PointF points ) : void
brush Brush
points PointF
return void

FillClosedCurve() public method

public FillClosedCurve ( Brush brush, PointF points, FillMode fillmode, float tension = 0.5f ) : void
brush Brush
points PointF
fillmode FillMode
tension float
return void

FillEllipse() public method

public FillEllipse ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
return void

FillEllipse() public method

public FillEllipse ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
return void

FillEllipse() public method

public FillEllipse ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
return void

FillPath() public method

public FillPath ( Brush brush, GraphicsPath path ) : void
brush Brush
path System.Drawing.Drawing2D.GraphicsPath
return void

FillPie() public method

public FillPie ( Brush brush, Rectangle rect, float startAngle, float sweepAngle ) : void
brush Brush
rect Rectangle
startAngle float
sweepAngle float
return void

FillPie() public method

public FillPie ( Brush brush, float x, float y, float width, float height, float startAngle, float sweepAngle ) : void
brush Brush
x float
y float
width float
height float
startAngle float
sweepAngle float
return void

FillPie() public method

public FillPie ( Brush brush, int x, int y, int width, int height, int startAngle, int sweepAngle ) : void
brush Brush
x int
y int
width int
height int
startAngle int
sweepAngle int
return void

FillPolygon() public method

public FillPolygon ( Brush brush, Point points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points Point
fillMode FillMode
return void

FillPolygon() public method

public FillPolygon ( Brush brush, PointF points, FillMode fillMode = FillMode.Alternate ) : void
brush Brush
points PointF
fillMode FillMode
return void

FillRectangle() public method

public FillRectangle ( Brush brush, Rectangle rect ) : void
brush Brush
rect Rectangle
return void

FillRectangle() public method

public FillRectangle ( Brush brush, RectangleF rect ) : void
brush Brush
rect RectangleF
return void

FillRectangle() public method

public FillRectangle ( Brush brush, float x1, float y1, float x2, float y2 ) : void
brush Brush
x1 float
y1 float
x2 float
y2 float
return void

FillRectangle() public method

public FillRectangle ( Brush brush, int x1, int y1, int x2, int y2 ) : void
brush Brush
x1 int
y1 int
x2 int
y2 int
return void

FillRectangles() public method

public FillRectangles ( Brush brush, Rectangle rects ) : void
brush Brush
rects Rectangle
return void

FillRectangles() public method

public FillRectangles ( Brush brush, RectangleF rects ) : void
brush Brush
rects RectangleF
return void

FillRegion() public method

Fills the interior of a region.
public FillRegion ( Brush brush, Region region ) : void
brush Brush Brush.
region Region Region.
return void

Flush() public method

public Flush ( ) : void
return void

Flush() public method

public Flush ( FlushIntention intention ) : void
intention FlushIntention
return void

FromContext() public static method

public static FromContext ( CGContext context ) : Graphics
context CGContext
return Graphics

FromContext() public static method

public static FromContext ( CGContext context, float screenScale ) : Graphics
context CGContext
screenScale float
return Graphics

FromContext() public static method

public static FromContext ( NSGraphicsContext context ) : Graphics
context NSGraphicsContext
return Graphics

FromCurrentContext() public static method

public static FromCurrentContext ( ) : Graphics
return Graphics

FromImage() public static method

public static FromImage ( Image image ) : Graphics
image Image
return Graphics

GetNearestColor() public method

public GetNearestColor ( Color color ) : Color
color Color
return Color

Graphics() public method

public Graphics ( CGContext context, bool flipped = true ) : AppKit
context CGContext
flipped bool
return AppKit

IntersectClip() public method

public IntersectClip ( Rectangle rect ) : void
rect Rectangle
return void

IntersectClip() public method

public IntersectClip ( RectangleF rect ) : void
rect RectangleF
return void

IntersectClip() public method

public IntersectClip ( Region region ) : void
region Region
return void

IsVisible() public method

public IsVisible ( Point point ) : bool
point Point
return bool

IsVisible() public method

public IsVisible ( PointF point ) : bool
point PointF
return bool

IsVisible() public method

public IsVisible ( Rectangle rect ) : bool
rect Rectangle
return bool

IsVisible() public method

public IsVisible ( RectangleF rect ) : bool
rect RectangleF
return bool

IsVisible() public method

public IsVisible ( float x, float y ) : bool
x float
y float
return bool

IsVisible() public method

public IsVisible ( float x, float y, float width, float height ) : bool
x float
y float
width float
height float
return bool

IsVisible() public method

public IsVisible ( int x, int y ) : bool
x int
y int
return bool

IsVisible() public method

public IsVisible ( int x, int y, int width, int height ) : bool
x int
y int
width int
height int
return bool

MeasureCharacterRanges() public method

public MeasureCharacterRanges ( string text, Font font, RectangleF layoutRect, StringFormat stringFormat ) : Region[]
text string
font Font
layoutRect RectangleF
stringFormat StringFormat
return Region[]

MeasureString() public method

public MeasureString ( string text, Font font ) : SizeF
text string
font Font
return SizeF

MeasureString() public method

public MeasureString ( string text, Font font, PointF point, StringFormat stringFormat ) : SizeF
text string
font Font
point PointF
stringFormat StringFormat
return SizeF

MeasureString() public method

public MeasureString ( string textg, Font font, RectangleF rect ) : SizeF
textg string
font Font
rect RectangleF
return SizeF

MeasureString() public method

public MeasureString ( string textg, Font font, SizeF layoutArea ) : SizeF
textg string
font Font
layoutArea SizeF
return SizeF

MeasureString() public method

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat ) : SizeF
text string
font Font
layoutArea SizeF
stringFormat StringFormat
return SizeF

MeasureString() public method

public MeasureString ( string text, Font font, SizeF layoutArea, StringFormat stringFormat, int &charactersFitted, int &linesFilled ) : SizeF
text string
font Font
layoutArea SizeF
stringFormat StringFormat
charactersFitted int
linesFilled int
return SizeF

MeasureString() public method

public MeasureString ( string textg, Font font, int width ) : SizeF
textg string
font Font
width int
return SizeF

MeasureString() public method

public MeasureString ( string text, Font font, int width, StringFormat format ) : SizeF
text string
font Font
width int
format StringFormat
return SizeF

MultiplyTransform() public method

public MultiplyTransform ( Matrix matrix ) : void
matrix Matrix
return void

MultiplyTransform() public method

public MultiplyTransform ( Matrix matrix, MatrixOrder order ) : void
matrix Matrix
order MatrixOrder
return void

ResetClip() public method

public ResetClip ( ) : void
return void

ResetTransform() public method

public ResetTransform ( ) : void
return void

Restore() public method

public Restore ( GraphicsState state ) : void
state GraphicsState
return void

RotateTransform() public method

public RotateTransform ( float angle ) : void
angle float
return void

RotateTransform() public method

public RotateTransform ( float angle, MatrixOrder order ) : void
angle float
order MatrixOrder
return void

Save() public method

public Save ( ) : GraphicsState
return GraphicsState

ScaleTransform() public method

public ScaleTransform ( float sx, float sy ) : void
sx float
sy float
return void

ScaleTransform() public method

public ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
sx float
sy float
order MatrixOrder
return void

SetClip() public method

public SetClip ( Graphics g ) : void
g Graphics
return void

SetClip() public method

public SetClip ( Graphics g, CombineMode combineMode ) : void
g Graphics
combineMode CombineMode
return void

SetClip() public method

public SetClip ( GraphicsPath graphicsPath ) : void
graphicsPath GraphicsPath
return void

SetClip() public method

public SetClip ( GraphicsPath graphicsPath, CombineMode combineMode ) : void
graphicsPath GraphicsPath
combineMode CombineMode
return void

SetClip() public method

public SetClip ( Rectangle rect ) : void
rect Rectangle
return void

SetClip() public method

public SetClip ( Rectangle rect, CombineMode combineMode ) : void
rect Rectangle
combineMode CombineMode
return void

SetClip() public method

public SetClip ( RectangleF rect ) : void
rect RectangleF
return void

SetClip() public method

public SetClip ( RectangleF rect, CombineMode combineMode ) : void
rect RectangleF
combineMode CombineMode
return void

SetClip() public method

public SetClip ( Region region, CombineMode combineMode ) : void
region Region
combineMode CombineMode
return void

TransformPoints() public method

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, Point pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts Point
return void

TransformPoints() public method

public TransformPoints ( CoordinateSpace destSpace, CoordinateSpace srcSpace, PointF pts ) : void
destSpace CoordinateSpace
srcSpace CoordinateSpace
pts PointF
return void

TranslateClip() public method

public TranslateClip ( float dx, float dy ) : void
dx float
dy float
return void

TranslateClip() public method

public TranslateClip ( int dx, int dy ) : void
dx int
dy int
return void

TranslateTransform() public method

public TranslateTransform ( float tx, float ty ) : void
tx float
ty float
return void

TranslateTransform() public method

public TranslateTransform ( float tx, float ty, MatrixOrder order ) : void
tx float
ty float
order MatrixOrder
return void

drawEllipticalArcToContext() public method

public drawEllipticalArcToContext ( int degree, double threshold ) : void
degree int
threshold double
return void

Property Details

eta1 protected_oe property

protected double eta1
return double

eta2 protected_oe property

protected double eta2
return double

isPieSlice protected_oe property

protected bool isPieSlice
return bool

xF1 protected_oe property

protected double xF1
return double

xF2 protected_oe property

protected double xF2
return double

yF1 protected_oe property

protected double yF1
return double

yF2 protected_oe property

protected double yF2
return double