-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
add Path2D and related methods #769
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Do you mind copying some scaladocs from MDN?
@@ -124,18 +142,28 @@ class CanvasRenderingContext2D extends js.Object { | |||
/** Fills the subpaths with the current fill style. */ | |||
def fill(): Unit = js.native | |||
|
|||
def fill(path: Path2D): Unit = js.native | |||
|
|||
def fill(fillRule: String): Unit = js.native |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like fillRule
can be either "nonzero"
or "evenodd"
so we should model like other "enums".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, this is neat!
@js.native | ||
@JSGlobal | ||
class Path2D extends js.Object { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The [[Path2D]] interface of the Canvas 2D API is used to declare a path that can then be used on a [[CanvasRenderingContext2D]] object.
* clockwise). | ||
*/ | ||
def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, | ||
endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems to be called counterclockwise
in the spec.
endAngle: Double, anticlockwise: Boolean = js.native): Unit = js.native | |
endAngle: Double, counterclockwise: Boolean = js.native): Unit = js.native |
def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, | ||
anticlockwise: Boolean): Unit = js.native |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, | |
anticlockwise: Boolean): Unit = js.native | |
def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, | |
counterclockwise: Boolean): Unit = js.native |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks a bunch!!
Hi there!
Before submitting a PR containing any Scala changes, please make sure you...
sbt prePR
api-reports
Thanks for contributing!