Skip to content

Commit 07a5a35

Browse files
author
태재영
committed
fix: #374
1 parent 2ac4182 commit 07a5a35

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webgl/lessons/webgl-3d-geometry-lathe.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -807,8 +807,8 @@ function getVertIndex(position) {
807807
</pre>
808808
<p>It worked! It got rid of the seam. Unfortunately it took several seconds to run and
809809
made the interface unusable. This is because it's a O^2 solution. If you slide the sliders
810-
for the most vertices you can generate ~20000 vertices. For an O^2 that's up to 300 million iterations
811-
that have to happen.
810+
for the most vertices(distance/divisions) in example above you can generate ~114000 vertices.
811+
For an O^2 that's up to 12 billion iterations that have to happen.
812812
</p>
813813
<p>I searched the net for a easy solution. I didn't find one. I thought about putting all the points
814814
in an <a href="https://en.wikipedia.org/wiki/Octree">octree</a> to make finding matching points

0 commit comments

Comments
 (0)