MCPcopy Create free account
hub / github.com/Logicalshift/flo_draw / line_join

Method line_join

canvas/src/context.rs:66–66  ·  view source on GitHub ↗

Sets the line join style for the next stroke() operation

(&mut self, join: LineJoin)

Source from the content-addressed store, hash-verified

64
65 /// Sets the line join style for the next stroke() operation
66 fn line_join(&mut self, join: LineJoin) { self.draw(Draw::LineJoin(join)); }
67
68 /// Sets the style of the start and end cap of the next line drawn by the stroke() operation
69 fn line_cap(&mut self, cap: LineCap) { self.draw(Draw::LineCap(cap)); }

Callers 1

drawMethod · 0.80

Implementers 3

font_line_layout.rscanvas/src/font_line_layout.rs
context.rscanvas/src/context.rs
canvas.rscanvas/src/canvas.rs

Calls 2

LineJoinEnum · 0.85
drawMethod · 0.45

Tested by

no test coverage detected