-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path__init__.py
50 lines (50 loc) · 920 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from geometer.__version__ import __version__
from geometer.curve import Circle, Cone, Conic, Cylinder, Ellipse, Quadric, QuadricCollection, Sphere
from geometer.operators import (
angle,
angle_bisectors,
crossratio,
dist,
harmonic_set,
is_cocircular,
is_collinear,
is_concurrent,
is_coplanar,
is_perpendicular,
)
from geometer.point import (
I,
J,
Line,
LineCollection,
Plane,
PlaneCollection,
Point,
PointCollection,
infty,
infty_plane,
join,
meet,
)
from geometer.shapes import (
Cuboid,
Polygon,
PolygonCollection,
Polyhedron,
Rectangle,
RegularPolygon,
Segment,
SegmentCollection,
Simplex,
Triangle,
)
from geometer.transformation import (
Transformation,
TransformationCollection,
affine_transform,
identity,
reflection,
rotation,
scaling,
translation,
)