Awesome
Shapes Example Project
This is a compilation of examples using the shapes library please feel free to try it out and contribute if you think something should be added or modified.
<p align="center"> <img src="https://github.com/kieranb662/Shapes-Examples/blob/master/Media/ShapesCollage.PNG"> </p>Lines
Line
Found at drawing trees. A Line defined by the from and to points.
<p align="center"> <img src="https://github.com/kieranb662/Shapes-Examples/blob/master/Media/Line.png" height=200/> </p>Horizontal
A horizontal line that is the width of its container has a single parameter
offset
: A value between 0 and 1 defining the lines vertical offset in its container (Default: 0.5)
Vertical
A Vertical line that is the height of its container has a single parameter
offset
: A value between 0 and 1 defining the line's horizontal offset in its container (Default: 0.5)
Adaptive
This shape creates a line centered inside of and constrained by its bounding box. The end points of the line are the points of intersection of an infinitely long angled line and the container rectangle
<p align="center"> <img src="https://github.com/kieranb662/Shapes-Examples/blob/master/Media/AdaptiveLine.gif" height=200/> </p>Triangles
The various triangles are shown below.
<p align="center"> <img src="https://github.com/kieranb662/Shapes-Examples/blob/master/Media/Triangles.png" height=500/> </p>Graphing
Cartesian Grid
A Rectangular grid of vertical and horizontal lines. Has two parameters
xCount
: The number of vertical lines
yCount
: The number of horizontal lines
Polar Grid
A grid made up of concentric circles and angled lines running through their center.
rCount
: The number of Circles
thetaCount
: The number of lines
TickMarks
Tick marks spaced out evenly with varying lengths dependent on the type of tick minor, semi, or major.
The shape has two parameters spacing: CGFloat
and ticks: Int
. The spacing is the distance between ticks while the ticks
is the number of tick marks.
An examples using TickMarks
are shown below
Misc
Arrow
An arrow that starts out small shaped like this |--| but as it grows larger it looks like this <---->
<p align="center"> <img src="https://github.com/kieranb662/Shapes-Examples/blob/master/Media/Arrows.gif" height=500/> </p>