Skip to content

Commit 0ce5ff1

Browse files
authored
Update main.py
1 parent 2a42bb0 commit 0ce5ff1

File tree

1 file changed

+1
-1
lines changed
  • Programming_Assignments/part2/src/ex2

1 file changed

+1
-1
lines changed

Programming_Assignments/part2/src/ex2/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
RANGE_XY = 100000
77
def gen_points():
8-
num_points = int(input("Give number of Points to generate Dalauny Triangulation: "))
8+
num_points = int(input("Give number of Points to generate Delauny Triangulation: "))
99
return np.array([[np.random.randint(0, RANGE_XY),np.random.randint(0, RANGE_XY)] for i in range(num_points)])
1010

1111
def compute_plot_delauny(points):

0 commit comments

Comments
 (0)