summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/drawelement.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/drawelement.h')
-rw-r--r--Build/source/utils/asymptote/drawelement.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/Build/source/utils/asymptote/drawelement.h b/Build/source/utils/asymptote/drawelement.h
index f048cee28f3..7dbd1c42b01 100644
--- a/Build/source/utils/asymptote/drawelement.h
+++ b/Build/source/utils/asymptote/drawelement.h
@@ -26,18 +26,6 @@ namespace camp {
static const double pixel=1.0; // Adaptive rendering constant.
-// Return one-sixth of the second derivative of the Bezier curve defined
-// by a,b,c,d at 0.
-inline triple bezierPP(triple a, triple b, triple c) {
- return a+c-2.0*b;
-}
-
-// Return one-third of the third derivative of the Bezier curve defined by
-// a,b,c,d at 0.
-inline triple bezierPPP(triple a, triple b, triple c, triple d) {
- return d-a+3.0*(b-c);
-}
-
enum Interaction {EMBEDDED=0,BILLBOARD};
void copyArray4x4C(double*& dest, const vm::array *a);