wxGraphicsPath
(wx)See external documentation: wxGraphicsPath.
See external documentation:
This class is derived (and can use functions) from:
wxGraphicsObject
Functions
moveToPoint(This, P) -> ok
This = wxGraphicsPath()P = {X::float(), Y::float()}
See
moveToPoint(This, X, Y) -> ok
This = wxGraphicsPath()X = number()Y = number()
See
addArc(This, C, R, StartAngle, EndAngle, Clockwise) -> ok
This = wxGraphicsPath()C = {X::float(), Y::float()}R = number()StartAngle = number()EndAngle = number()Clockwise = boolean()
See
addArc(This, X, Y, R, StartAngle, EndAngle, Clockwise) -> ok
This = wxGraphicsPath()X = number()Y = number()R = number()StartAngle = number()EndAngle = number()Clockwise = boolean()
See
addArcToPoint(This, X1, Y1, X2, Y2, R) -> ok
This = wxGraphicsPath()X1 = number()Y1 = number()X2 = number()Y2 = number()R = number()
See
addCircle(This, X, Y, R) -> ok
This = wxGraphicsPath()X = number()Y = number()R = number()
See
addCurveToPoint(This, C1, C2, E) -> ok
This = wxGraphicsPath()C1 = {X::float(), Y::float()}C2 = {X::float(), Y::float()}E = {X::float(), Y::float()}
See
addCurveToPoint(This, Cx1, Cy1, Cx2, Cy2, X, Y) -> ok
This = wxGraphicsPath()Cx1 = number()Cy1 = number()Cx2 = number()Cy2 = number()X = number()Y = number()
See
addEllipse(This, X, Y, W, H) -> ok
This = wxGraphicsPath()X = number()Y = number()W = number()H = number()
See
addLineToPoint(This, P) -> ok
This = wxGraphicsPath()P = {X::float(), Y::float()}
See
addLineToPoint(This, X, Y) -> ok
This = wxGraphicsPath()X = number()Y = number()
See
addPath(This, Path) -> ok
This = wxGraphicsPath()Path = wxGraphicsPath()
See
addQuadCurveToPoint(This, Cx, Cy, X, Y) -> ok
This = wxGraphicsPath()Cx = number()Cy = number()X = number()Y = number()
See
addRectangle(This, X, Y, W, H) -> ok
This = wxGraphicsPath()X = number()Y = number()W = number()H = number()
See
addRoundedRectangle(This, X, Y, W, H, Radius) -> ok
This = wxGraphicsPath()X = number()Y = number()W = number()H = number()Radius = number()
See
closeSubpath(This) -> ok
This = wxGraphicsPath()
See
contains(This, C) -> boolean()
This = wxGraphicsPath()C = {X::float(), Y::float()}
Equivalent to contains(This, C, []).
contains(This, X, Y) -> boolean()
This = wxGraphicsPath()X = number()Y = number()
See
Also:
contains(This, C, [Option]) -> boolean() when
This::wxGraphicsPath(), C::{X::float(), Y::float()},
Option :: {fillStyle, wx:wx_enum()}.
FillStyle = integer
contains(This, X, Y, Option::[Option]) -> boolean()
This = wxGraphicsPath()X = number()Y = number()Option = {fillStyle, wx_enum() (see module wx)}
See
FillStyle = integer
getBox(This) -> {X::float(), Y::float(), W::float(), H::float()}
This = wxGraphicsPath()
See
getCurrentPoint(This) -> {X::float(), Y::float()}
This = wxGraphicsPath()
See
transform(This, Matrix) -> ok
This = wxGraphicsPath()Matrix = wxGraphicsMatrix() (see module wxGraphicsMatrix)
See