wxGraphicsPath

See external documentation: wxGraphicsPath.

See external documentation: wxGraphicsPath.

This class is derived (and can use functions) from:
wxGraphicsObject

Functions


moveToPoint(This, P) -> ok

See external documentation.

moveToPoint(This, X, Y) -> ok

See external documentation.

addArc(This, C, R, StartAngle, EndAngle, Clockwise) -> ok

  • This = wxGraphicsPath()
  • C = {X::float(), Y::float()}
  • R = number()
  • StartAngle = number()
  • EndAngle = number()
  • Clockwise = boolean()

See external documentation.

addArc(This, X, Y, R, StartAngle, EndAngle, Clockwise) -> ok

  • This = wxGraphicsPath()
  • X = number()
  • Y = number()
  • R = number()
  • StartAngle = number()
  • EndAngle = number()
  • Clockwise = boolean()

See external documentation.

addArcToPoint(This, X1, Y1, X2, Y2, R) -> ok

  • This = wxGraphicsPath()
  • X1 = number()
  • Y1 = number()
  • X2 = number()
  • Y2 = number()
  • R = number()

See external documentation.

addCircle(This, X, Y, R) -> ok

See external documentation.

addCurveToPoint(This, C1, C2, E) -> ok

  • This = wxGraphicsPath()
  • C1 = {X::float(), Y::float()}
  • C2 = {X::float(), Y::float()}
  • E = {X::float(), Y::float()}

See external documentation.

addCurveToPoint(This, Cx1, Cy1, Cx2, Cy2, X, Y) -> ok

  • This = wxGraphicsPath()
  • Cx1 = number()
  • Cy1 = number()
  • Cx2 = number()
  • Cy2 = number()
  • X = number()
  • Y = number()

See external documentation.

addEllipse(This, X, Y, W, H) -> ok

See external documentation.

addLineToPoint(This, P) -> ok

See external documentation.

addLineToPoint(This, X, Y) -> ok

See external documentation.

addPath(This, Path) -> ok

See external documentation.

addQuadCurveToPoint(This, Cx, Cy, X, Y) -> ok

See external documentation.

addRectangle(This, X, Y, W, H) -> ok

See external documentation.

addRoundedRectangle(This, X, Y, W, H, Radius) -> ok

  • This = wxGraphicsPath()
  • X = number()
  • Y = number()
  • W = number()
  • H = number()
  • Radius = number()

See external documentation.

closeSubpath(This) -> ok

See external documentation.

contains(This, C) -> boolean()

Equivalent to contains(This, C, []).

contains(This, X, Y) -> boolean()

See external documentation.
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, Options::[Option]) -> boolean()

See external documentation.
FillStyle = integer

getBox(This) -> {X::float(), Y::float(), W::float(), H::float()}

See external documentation.

getCurrentPoint(This) -> {X::float(), Y::float()}

See external documentation.

transform(This, Matrix) -> ok

See external documentation.