Scenic.Primitives.arc_spec
You're seeing just the function
arc_spec
, go back to Scenic.Primitives module for more information.
Specs
arc_spec( arc :: {radius :: number(), start :: number(), finish :: number()}, options :: list() ) :: Scenic.Graph.deferred()
Create the specification that adds an arc to a graph.
See the documentation for arc/3
for details.
Example:
arc = arc_spec( {100, 0, 0.4}, stroke: {4, :blue} )
graph = arc.(graph)