Get normalized midpoint.
(ai, bi, rr)
| 1160 | |
| 1161 | |
| 1162 | def _norm_midpt(ai, bi, rr): |
| 1163 | """Get normalized midpoint.""" |
| 1164 | c = rr[ai] |
| 1165 | c += rr[bi] |
| 1166 | _normalize_vectors(c) |
| 1167 | return c |
| 1168 | |
| 1169 | |
| 1170 | def _tessellate_sphere(mylevel): |
no test coverage detected