We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a42bb0 commit 0ce5ff1Copy full SHA for 0ce5ff1
Programming_Assignments/part2/src/ex2/main.py
@@ -5,7 +5,7 @@
5
6
RANGE_XY = 100000
7
def gen_points():
8
- num_points = int(input("Give number of Points to generate Dalauny Triangulation: "))
+ num_points = int(input("Give number of Points to generate Delauny Triangulation: "))
9
return np.array([[np.random.randint(0, RANGE_XY),np.random.randint(0, RANGE_XY)] for i in range(num_points)])
10
11
def compute_plot_delauny(points):
0 commit comments