module Celestine::Meta::Context::Methods

Overview

Holds all the context methods to be included in DSL classes like Context, Group, and Mask. This creates all the methods that can be used inside the draw block, like circle or group or #use.

Direct including types

Defined in:

celestine.cr

Instance Method Summary

Instance Method Detail

def <<(drawable : Celestine::Drawable) #

Adds a new drawable to this context's objects


[View source]
def use(id : String) #

Reuses an element defined using define: true by id


[View source]
def use(drawable : Celestine::Drawable) #

Reuses an element defined using define: true


[View source]
def use(drawable : Celestine::Drawable, &block : Celestine::Use -> Celestine::Use) #

Reuses an element defined using define: true and then opens a block with that object for configuring


[View source]
def use(id : String, &block : Celestine::Use -> Celestine::Use) #

Reuses an element defined using define: true by id and then opens a block with that object for configuring


[View source]
def use(&block : Celestine::Use -> Celestine::Use) #

Reuses an element defined using define: true and then opens a block with that object for configuring


[View source]