Mon, 11 Dec 2017 00:46:35 +0200
Can now write dat files, added direct color handling
| 0 | 1 | class Vertex: |
| 2 | def __init__(self, x, y, z): | |
| 3 | self.x, self.y, self.z = x, y, z | |
| 4 | def __repr__(self): | |
| 5 | return str.format('Vertex({!r}, {!r}, {!r})', self.x, self.y, self.z) | |
| 6 | def distance_to(self, other): | |
| 7 | # can't use hypot because of 3 arguments | |
| 8 | from math import sqrt | |
| 9 | return sqrt( | |
| 10 | (self.x - other.x) ** 2 + | |
| 11 | (self.y - other.y) ** 2 + | |
| 12 | (self.z - other.z) ** 2 | |
| 13 | ) | |
|
3
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
14 | @property |
|
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
15 | def coordinates(self): |
|
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
16 | return self.x, self.y, self.z |
| 0 | 17 | |
| 18 | class LineSegment: | |
| 19 | def __init__(self, v1, v2): | |
| 20 | self.v1, self.v2 = v1, v2 | |
| 21 | def __repr__(self): | |
| 22 | return str.format('LineSegment({!r}, {!r})', self.v1, self.v2) | |
|
3
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
23 | @property |
|
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
24 | def vertices(self): |
|
1dc58f44d556
Can now write dat files, added direct color handling
Santeri Piippo
parents:
1
diff
changeset
|
25 | return self.v1, self.v2 |
| 0 | 26 | |
| 1 | 27 | class Polygon: |
| 28 | def __init__(self, vertices): | |
| 29 | self.vertices = vertices | |
| 30 | def __repr__(self): | |
| 31 | return str.format('Polygon({!r})', self.vertices) | |
| 32 | ||
| 0 | 33 | def is_real(number): |
| 34 | return isinstance(number, int) or isinstance(number, float) | |
| 35 | ||
| 36 | class TransformationMatrix: | |
| 37 | ''' | |
| 38 | A 3×3 matrix forming the top-left portion of a full 4×4 transformation | |
| 39 | matrix. | |
| 40 | ''' | |
| 41 | def __init__(self, values): | |
| 42 | assert(all(is_real(x) for x in values)) | |
| 43 | assert len(values) == 9 | |
| 44 | self.values = values | |
| 45 | def __repr__(self): | |
| 46 | return str.format('TransformationMatrix({!r})', self.values) | |
| 47 | def __getitem__(self, index): | |
| 48 | return self.values[index] | |
| 49 | ||
| 50 | def complete_matrix(matrix, anchor): | |
| 51 | ''' | |
| 52 | Combines a 3×3 matrix and an anchor vertex into a full 4×4 | |
| 53 | transformation matrix. | |
| 54 | ''' | |
| 55 | return [ | |
| 56 | matrix[0], matrix[1], matrix[2], anchor.x, | |
| 57 | matrix[3], matrix[4], matrix[5], anchor.y, | |
| 58 | matrix[6], matrix[7], matrix[8], anchor.z, | |
| 59 | 0, 0, 0, 1, | |
| 60 | ] | |
| 61 | ||
| 62 | def transform(vertex, transformation_matrix): | |
| 63 | ''' | |
| 64 | Transforms a vertex by a 4×4 transformation matrix. | |
| 65 | ''' | |
| 66 | u = transformation_matrix[0] * vertex.x \ | |
| 67 | + transformation_matrix[1] * vertex.y \ | |
| 68 | + transformation_matrix[2] * vertex.z \ | |
| 69 | + transformation_matrix[3] | |
| 70 | v = transformation_matrix[4] * vertex.x \ | |
| 71 | + transformation_matrix[5] * vertex.y \ | |
| 72 | + transformation_matrix[6] * vertex.z \ | |
| 73 | + transformation_matrix[7] | |
| 74 | w = transformation_matrix[8] * vertex.x \ | |
| 75 | + transformation_matrix[9] * vertex.y \ | |
| 76 | + transformation_matrix[10] * vertex.z \ | |
| 77 | + transformation_matrix[11] | |
| 78 | return Vertex(u, v, w) |