source typo fixes pt4 (only on py3 merged code)
This commit is contained in:
@@ -22,7 +22,7 @@
|
||||
|
||||
|
||||
#include "PreCompiled.h"
|
||||
#ifndef _PreComp_
|
||||
#ifndef _PreComp_
|
||||
# include <Python.h>
|
||||
#endif
|
||||
|
||||
@@ -88,7 +88,7 @@ private:
|
||||
double cc = 2.0 * r2 * (b * v - r1);
|
||||
double d = uv * uv - uu * cc;
|
||||
if (d < 0) {
|
||||
throw Py::RuntimeError("Unable to caluclate intersection points");
|
||||
throw Py::RuntimeError("Unable to calculate intersection points");
|
||||
}
|
||||
|
||||
double t;
|
||||
|
||||
Reference in New Issue
Block a user