1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
extern "C" {
// property getters/setters
fn js_set_fill_style_rgba(r: u8, g: u8, b: u8, a: u8);
fn js_get_line_cap() -> u32;
fn js_set_line_cap(value: u32);
fn js_get_line_join() -> u32;
fn js_set_line_join(value: u32);
fn js_get_line_width() -> u32;
fn js_set_line_width(value: u32);
fn js_set_stroke_style_rgba(r: u8, g: u8, b: u8, a: u8);
// functions
fn js_arc(
x: f32,
y: f32,
radius: f32,
start_angle: f32,
end_angle: f32,
counter_clockwise: bool,
);
fn js_arc_to(x1: f32, y1: f32, x2: f32, y2: f32, radius: f32);
fn js_begin_path();
fn js_clear_rect(x: f32, y: f32, width: f32, height: f32);
fn js_close_path();
fn js_fill();
fn js_fill_rect(x: f32, y: f32, width: f32, height: f32);
fn js_line_to(x: f32, y: f32);
fn js_move_to(x: f32, y: f32);
fn js_stroke();
}
pub struct CanvasRenderingContext2D {}
impl CanvasRenderingContext2D {
/// setter for property that specifies the color to use for the fills (outlines) around shapes. The default is black.
/// see [CanvasRenderingContext2D.fillStyle](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillStyle)
///
/// # Parameters
///
/// * 'r' - value from 0 to 255 that represents how much red is in the color
/// * 'g' - value from 0 to 255 that represents how much green is in the color
/// * 'b' - value from 0 to 255 that represents how much blue is in the color
/// * 'a' - value from 0 to 255 that represents how opaque the color is
pub fn set_fill_style_rgba(r: u8, g: u8, b: u8, a: u8) {
unsafe {
js_set_fill_style_rgba(r, g, b, a);
}
}
/// getter for property that determines the shape used to join two line segments where they meet.
/// see [CanvasRenderingContext2D.lineJap](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineJap)
pub fn get_line_join() -> LineJoin {
unsafe {
let raw_join_val = js_get_line_join();
return match raw_join_val {
1 => LineJoin::Bevel,
2 => LineJoin::Round,
3 => LineJoin::Miter,
_ => LineJoin::Bevel,
};
}
}
/// setter for property that determines the shape used to join two line segments where they meet.
/// see [CanvasRenderingContext2D.lineJoin](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineJoin)
///
/// # Parameters
///
/// * 'value' - the type of line join. Valid options are Bevel, Round, Miter
pub fn set_line_join(value: LineJoin) {
let join_val = match value {
LineJoin::Bevel => 1,
LineJoin::Round => 2,
LineJoin::Miter => 3,
};
unsafe {
js_set_line_join(join_val);
}
}
/// getter for property that determines the shape used to draw the end points of lines.
/// see [CanvasRenderingContext2D.lineCap](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineCap)
pub fn get_line_cap() -> LineCap {
unsafe {
let raw_cap_val = js_get_line_cap();
return match raw_cap_val {
1 => LineCap::Butt,
2 => LineCap::Round,
3 => LineCap::Square,
_ => LineCap::Butt,
};
}
}
/// setter for property that determines the shape used to draw the end points of lines.
/// see [CanvasRenderingContext2D.lineCap](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineCap)
///
/// # Parameters
///
/// * 'value' - the type of line cap. Valid options are Butt, Round, Square
pub fn set_line_cap(value: LineCap) {
let cap_val = match value {
LineCap::Butt => 1,
LineCap::Round => 2,
LineCap::Square => 3,
};
unsafe {
js_set_line_cap(cap_val);
}
}
/// getter for property that sets the thickness of lines.
/// see [CanvasRenderingContext2D.lineWidth](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineWidth)
pub fn get_line_width() -> u32 {
unsafe {
return js_get_line_width();
}
}
/// setter for property that sets the thickness of lines.
/// see [CanvasRenderingContext2D.lineWidth](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineWidth)
///
/// # Parameters
///
/// * 'value' - the thickness of lines. Must be a non-zero positive number
pub fn set_line_width(value: u32) {
if value == 0 {
panic!("value must not be 0");
}
unsafe {
js_set_line_width(value);
}
}
/// setter for property that specifies the color to use for the strokes (outlines) around shapes. The default is black.
/// see [CanvasRenderingContext2D.strokeStyle](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/strokeStyle)
///
/// # Parameters
///
/// * 'r' - value from 0 to 255 that represents how much red is in the color
/// * 'g' - value from 0 to 255 that represents how much green is in the color
/// * 'b' - value from 0 to 255 that represents how much blue is in the color
/// * 'a' - value from 0 to 255 that represents how opaque the color is
pub fn set_stroke_style_rgba(r: u8, g: u8, b: u8, a: u8) {
unsafe {
js_set_stroke_style_rgba(r, g, b, a);
}
}
/// adds a circular arc to the current sub-path.
/// see [CanvasRenderingContext2D.arc](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/arc)
///
/// # Parameters
///
/// * 'x' - the horizontal coordinate of the arc's center
/// * 'y' - the vertical coordinate of the arc's center
/// * 'radius' - the arc's radius. Must be positive
/// * 'start_angle' - the angle at which the arc starts in radians, measured from the positive x-axis
/// * 'end_angle' - the angle at which the arc ends in radians, measured from the positive x-axis
/// * 'counter_clockwise' - if true, draws the arc counter-clockwise between the start and end angles
pub fn arc(
x: f32,
y: f32,
radius: f32,
start_angle: f32,
end_angle: f32,
counter_clockwise: bool,
) {
if radius <= 0. {
panic!("radius must be positive");
}
unsafe { js_arc(x, y, radius, start_angle, end_angle, counter_clockwise) }
}
/// adds a circular arc to the current sub-path, using the given control points and radius.
/// The arc is automatically connected to the path's latest point with a straight line, if necessary for the specified parameters.
/// see [CanvasRenderingContext2D.arcTo](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/arcTo)
///
/// # Parameters
///
/// * 'x1' - the x-axis coordinate of the first control point
/// * 'y1' - the y-axis coordinate of the first control point.
/// * 'x2' - the x-axis coordinate of the second control point
/// * 'y2' - the y-axis coordinate of the second control point.
/// * 'radius' - the arc's radius. Must be positive
pub fn arc_to(x1: f32, y1: f32, x2: f32, y2: f32, radius: f32) {
if radius <= 0. {
panic!("radius must be positive");
}
unsafe { js_arc_to(x1, y1, x2, y2, radius) }
}
/// starts a new path by emptying the list of sub-paths. Call this method when you want to create a new path.
/// see [CanvasRenderingContext2D.beginPath](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/beginPath)
///
/// # Parameters (none)
pub fn begin_path() {
unsafe { js_begin_path() }
}
/// erases the pixels in a rectangular area by setting them to transparent black.
/// see [CanvasRenderingContext2D.clearRect](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/clearRect)
///
/// # Parameters
///
/// * 'x' - the x-axis coordinate of the rectangle's starting point.
/// * 'y' - the y-axis coordinate of the rectangle's starting point.
/// * 'width' - the rectangle's width. Positive values are to the right, and negative to the left.
/// * 'height' - the rectangle's height. Positive values are down, and negative are up.
pub fn clear_rect(x: f32, y: f32, width: f32, height: f32) {
unsafe {
js_clear_rect(x, y, width, height);
}
}
/// attempts to add a straight line from the current point to the start of the current sub-path. If the shape has already been closed
/// or has only one point, this function does nothing.
///
/// This method doesn't draw anything to the canvas directly. You can render the path using the stroke() or fill() methods.
/// see [CanvasRenderingContext2D.closePath](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/closePath)
///
/// # Parameters (none)
pub fn close_path() {
unsafe {
js_close_path();
}
}
/// fills the current path with the current fillStyle
///
/// see [CanvasRenderingContext2D.fill](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fill)
///
/// # Parameters (none)
pub fn fill() {
unsafe {
js_fill();
}
}
/// draws a rectangle that is filled according to the current fillStyle.
///
/// This method draws directly to the canvas without modifying the current path, so any subsequent fill() or stroke() calls will have no effect on it.
///
/// see [CanvasRenderingContext2D.fillRect](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/fillRect)
///
/// # Parameters
///
/// * 'x' - the x-axis coordinate of the rectangle's starting point.
/// * 'y' - the y-axis coordinate of the rectangle's starting point.
/// * 'width' - the rectangle's width. Positive values are to the right, and negative to the left.
/// * 'height' - the rectangle's height. Positive values are down, and negative are up.
pub fn fill_rect(x: f32, y: f32, width: f32, height: f32) {
unsafe {
js_fill_rect(x, y, width, height);
}
}
/// adds a straight line to the current sub-path by connecting the sub-path's last point to the specified (x, y) coordinates.
/// see [CanvasRenderingContext2D.lineTo](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/lineTo)
///
/// # Parameters
///
/// * 'x' - the x-axis coordinate of the line's end point
/// * 'y' - the y-axis coordinate of the line's end point.
pub fn line_to(x: f32, y: f32) {
unsafe { js_line_to(x, y) }
}
/// begins a new sub-path at the point specified by the given (x, y) coordinates.
/// see [CanvasRenderingContext2D.moveTo](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/moveTo)
///
/// # Parameters
///
/// * 'x' - the x-axis coordinate of the point
/// * 'y' - the y-axis coordinate of the point.
pub fn move_to(x: f32, y: f32) {
unsafe { js_move_to(x, y) }
}
/// strokes (outlines) the current or given path with the current stroke style.
/// see [CanvasRenderingContext2D.stroke](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/stroke)
///
/// # Parameters (none)
pub fn stroke() {
unsafe { js_stroke() }
}
}
#[derive(Copy, Clone)]
pub enum LineCap {
Butt,
Round,
Square,
}
impl LineCap {
pub fn iterator() -> impl Iterator<Item = LineCap> {
[LineCap::Butt, LineCap::Round, LineCap::Square]
.iter()
.copied()
}
}
#[derive(Copy, Clone)]
pub enum LineJoin {
Bevel,
Round,
Miter,
}
impl LineJoin {
pub fn iterator() -> impl Iterator<Item = LineJoin> {
[LineJoin::Bevel, LineJoin::Round, LineJoin::Miter]
.iter()
.copied()
}
}