소스 검색

added comment for Wall

Gilbert Brault 5 년 전
부모
커밋
c06865c94b
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      pysketcher/shapes.py

+ 3 - 0
pysketcher/shapes.py

@@ -1205,6 +1205,9 @@ class Circle(Arc):
 
 
 class Wall(Shape):
+    """
+    defines a plan with thickness, filled with a pattern
+    """
     def __init__(self, x, y, thickness, pattern='/', transparent=False):
         is_sequence(x, y, length=len(x))
         if isinstance(x[0], (tuple,list,ndarray)):