class Celestine::Path

Overview

A class which represents an SVG path. Methods starting with a_ use absolute coordinates, while r_ methods require relative coordinates.

Included Modules

Defined in:

drawables/path.cr

Constant Summary

TAG = "path"

Instance Method Summary

Instance methods inherited from module Celestine::Modules::Animate::Transform

animate_transform_rotate(&block : Proc(Celestine::Animate::Transform::Rotate, Nil)) animate_transform_rotate, animate_transform_scale(&block : Proc(Celestine::Animate::Transform::Scale, Nil)) animate_transform_scale, animate_transform_skew_x(&block : Proc(Celestine::Animate::Transform::SkewX, Nil)) animate_transform_skew_x, animate_transform_skew_y(&block : Proc(Celestine::Animate::Transform::SkewY, Nil)) animate_transform_skew_y, animate_transform_translate(&block : Proc(Celestine::Animate::Transform::Translate, Nil)) animate_transform_translate

Instance methods inherited from module Celestine::Modules::Animate::Motion

animate_motion(&block : Celestine::Animate::Motion -> Celestine::Animate::Motion) animate_motion

Instance methods inherited from module Celestine::Modules::Animate

animate(&block : Proc(Celestine::Animate, Nil)) animate

Instance methods inherited from module Celestine::Modules::Marker

marker_attribute(io : IO) marker_attribute, set_marker_end(id : String)
set_marker_end(marker : Celestine::Marker)
set_marker_end
, set_marker_mid(id : String)
set_marker_mid(marker : Celestine::Marker)
set_marker_mid
, set_marker_start(id : String)
set_marker_start(marker : Celestine::Marker)
set_marker_start

Instance methods inherited from module Celestine::Modules::Filter

filter_attribute(io : IO) filter_attribute, set_filter(id : String)
set_filter(filter : Celestine::Filter)
set_filter

Instance methods inherited from module Celestine::Modules::Mask

mask_attribute(io : IO) mask_attribute, set_mask(id : String)
set_mask(mask : Celestine::Mask)
set_mask

Instance methods inherited from module Celestine::Modules::Transform

transform(&block : Celestine::Drawable::Transform -> Celestine::Drawable::Transform) transform, transform_attribute(io : IO) transform_attribute

Instance methods inherited from module Celestine::Modules::StrokeFill

color : String | Nil color, color=(color : String | Nil) color=, color_interpolation : String | Nil color_interpolation, color_interpolation=(color_interpolation : String | Nil) color_interpolation=, color_interpolation_filters : String | Nil color_interpolation_filters, color_interpolation_filters=(color_interpolation_filters : String | Nil) color_interpolation_filters=, dash_array : Array(Float64) dash_array, dash_array=(dash_array : Array(Float64)) dash_array=, dash_offset : IFNumber | Nil dash_offset, dash_offset=(dash_offset : IFNumber | Nil) dash_offset=, dash_offset_units : String | Nil dash_offset_units, dash_offset_units=(dash_offset_units : String | Nil) dash_offset_units=, fill : String | Nil fill, fill=(fill : String | Nil) fill=, fill_opacity : IFNumber | Nil fill_opacity, fill_opacity=(fill_opacity : IFNumber | Nil) fill_opacity=, fill_rule : Bool fill_rule, fill_rule=(fill_rule : Bool) fill_rule=, line_cap : String | Nil line_cap, line_cap=(line_cap : String | Nil) line_cap=, line_join : String | Nil line_join, line_join=(line_join : String | Nil) line_join=, miter_limit : IFNumber | Nil miter_limit, miter_limit=(miter_limit : IFNumber | Nil) miter_limit=, miter_limit_units : String | Nil miter_limit_units, miter_limit_units=(miter_limit_units : String | Nil) miter_limit_units=, opacity : IFNumber | Nil opacity, opacity=(opacity : IFNumber | Nil) opacity=, set_fill(pattern : Celestine::Pattern)
set_fill(gradient : Celestine::Gradient)
set_fill
, set_stroke(pattern : Celestine::Pattern)
set_stroke(gradient : Celestine::Gradient)
set_stroke
, shape_rendering : String | Nil shape_rendering, shape_rendering=(shape_rendering : String | Nil) shape_rendering=, stroke : String | Nil stroke, stroke=(stroke : String | Nil) stroke=, stroke_fill_attribute(io : IO) stroke_fill_attribute, stroke_opacity : IFNumber | Nil stroke_opacity, stroke_opacity=(stroke_opacity : IFNumber | Nil) stroke_opacity=, stroke_width : IFNumber | Nil stroke_width, stroke_width=(stroke_width : IFNumber | Nil) stroke_width=, stroke_width_units : String | Nil stroke_width_units, stroke_width_units=(stroke_width_units : String | Nil) stroke_width_units=, vector_effect : String | Nil vector_effect, vector_effect=(vector_effect : String | Nil) vector_effect=

Instance methods inherited from class Celestine::Drawable

class_attribute(io : IO) class_attribute, classes : Array(String) classes, classes=(classes : Array(String)) classes=, custom_attribute(io : IO) custom_attribute, custom_attrs : Hash(String, String) custom_attrs, custom_attrs=(custom_attrs : Hash(String, String)) custom_attrs=, draw(io : IO) : Nil draw, id : String | Nil id, id=(id : String | Nil) id=, id_attribute(io : IO) id_attribute, inner_elements : IO::Memory inner_elements, inner_elements=(inner_elements : IO::Memory) inner_elements=, style : Hash(String, String) style, style=(style : Hash(String, String)) style=, style_attribute(io : IO) style_attribute

Instance Method Detail

def a_arc(x, y, rx, ry, rotation = 0, large = false, flip = false) #

[View source]
def a_bcurve(cx1, cy1, cx2, cy2, x, y) #

[View source]
def a_h_line(x) #

Draws a horizontal line to an absolute point


[View source]
def a_line(x, y) #

Draws a line to an absolute point


[View source]
def a_move(x, y) #

Moves to an absolute point


[View source]
def a_q_bcurve(cx, cy, x, y) #

[View source]
def a_s_bcurve(cx2, cy2, x, y) #

[View source]
def a_t_bcurve(x, y) #

[View source]
def a_v_line(y) #

Draws a vertical line to an absolute point


[View source]
def close #

Closes the path.


[View source]
def code #

Finalized path code points.


[View source]
def code=(other : String) #

[View source]
def draw(io : IO) : Nil #
Description copied from class Celestine::Drawable

Main draw method for a drawable. Takes in and interacts with an io.


[View source]
def r_arc(x, y, rx, ry, rotation = 0, large = false, flip = false) #

[View source]
def r_bcurve(cx1, cy1, cx2, cy2, x, y) #

[View source]
def r_h_line(x) #

Draws a horizontal line to a relative point


[View source]
def r_line(x, y) #

Draws a line to a relative point


[View source]
def r_move(x, y) #

Moves to a relative point


[View source]
def r_q_bcurve(cx, cy, x, y) #

[View source]
def r_s_bcurve(cx2, cy2, x, y) #

[View source]
def r_t_bcurve(x, y) #

[View source]
def r_v_line(y) #

Draws a vertical line to a relative point


[View source]