Source code for pycanha.gmm.primitives

"""Geometric primitives."""

from __future__ import annotations

import pycanha_core as pcc


[docs] class Triangle(pcc.gmm.Triangle): pass
[docs] class Rectangle(pcc.gmm.Rectangle): pass
[docs] class Quadrilateral(pcc.gmm.Quadrilateral): pass
[docs] class Cylinder(pcc.gmm.Cylinder): pass