Paratick

By Martin McBride, 2022-01-18
Tags: geometry paratick
Categories: generativepy generative art


The ParallelMarker class is a special Shape that adds a small arros marker to a line, of the type often used in geometric diagrams to show that two lines are parallel. They look like this:

You can add 1, 2 or 3 markers.

The TickMarker only draws the tick, it doesn't draw the line itself. This would normally be draw using a Line object, Polygon object, or similar.

ParallelMarker class

ParallelMarker is derived from the Shape class. It adds several methods:

  • of_start_end
  • with_length
  • with_count
  • with_gap

of_start_end

Creates a marker based on a start and end points.

of_start_end(a, b)
Parameter Type Description
a (number, number) Tuple (x, y) for start of line
b (number, number) Tuple (x, y) for end of line

This will draw an tick marker for the line formed by ab. The marker will be halfway between points a and b, and the arrow will point towards b.

with_length

Sets the length of the marker.

with_length(length)
Parameter Type Description
length number Length of marker in user units.

The default is 4.

with_count

Sets the number of arrows in the marker.

with_count(count)
Parameter Type Description
count int Number of arrows

This can be used to draw a single, double, or triple arrows. Permitted values are 1, 2, or 3. Default is 1.

with_gap

Sets the gap between the arrows if count > 1.

with_gap(gap)
Parameter Type Description
gap number Gap between arrows in user units.

Sets the spacing of the arrows. This is only relevant if there is more than one arrow (ie if count > 1), otherwise it is ignored. The default is 1.

paratick function

This older paratick function is deprecated as of GenerativePy 3.1.

paratick(ctx, a, b, count=1, length=4, gap=1)
Parameter Type Description
ctx Context The Pycairo Context to draw to
a (number, number) Tuple (x, y) for point a
b (number, number) Tuple (x, y) for point b
count int Number of ticks on the line, 1, 2 or 3.
length number length of the tick in user units.
gap number Gap between ticks in user units.

Draws an tick across the line ab. The tick is half way between points a and b, and points towards b.

Example

See the example in the angle_marker article.

See also

If you found this article useful, you might be interested in the book NumPy Recipes or other books by the same author.

Join the PythonInformer Newsletter

Sign up using this form to receive an email when new content is added:

Popular tags

2d arrays abstract data type alignment and angle animation arc array arrays bar chart bar style behavioural pattern bezier curve built-in function callable object chain circle classes clipping close closure cmyk colour combinations comparison operator comprehension context context manager conversion count creational pattern data science data types decorator design pattern device space dictionary drawing duck typing efficiency ellipse else encryption enumerate fill filter font font style for loop formula function function composition function plot functools game development generativepy tutorial generator geometry gif global variable gradient greyscale higher order function hsl html image image processing imagesurface immutable object in operator index inner function input installing iter iterable iterator itertools join l system lambda function latex len lerp line line plot line style linear gradient linspace list list comprehension logical operator lru_cache magic method mandelbrot mandelbrot set map marker style matplotlib monad mutability named parameter numeric python numpy object open operator optimisation optional parameter or pandas partial application path pattern permutations pie chart pil pillow polygon pong positional parameter print product programming paradigms programming techniques pure function python standard library radial gradient range recipes rectangle recursion reduce regular polygon repeat rgb rotation roundrect scaling scatter plot scipy sector segment sequence setup shape singleton slice slicing sound spirograph sprite square str stream string stroke structural pattern subpath symmetric encryption template tex text text metrics tinkerbell fractal transform translation transparency triangle truthy value tuple turtle unpacking user space vectorisation webserver website while loop zip zip_longest