diff --git a/d3/model/basemodel.py b/d3/model/basemodel.py index 7fff452..e9b90a1 100644 --- a/d3/model/basemodel.py +++ b/d3/model/basemodel.py @@ -42,6 +42,10 @@ class FaceVertex: class Face: """Represents a face with 3 vertices + + Faces with more than 3 vertices are not supported in this class. You should + split your face first and then create the number needed of instances of + this class. """ def __init__(self, a = None, b = None, c = None, material = None): """Initializes a Face with its three FaceVertex and its Material