"cannot_wait_for_CGAL-3.2" to the trunk.
My idea: the branch is the real working version, and I want it to be joined
back to the trunk:
__________________________ cannot_wait_for_CGAL-3.2 branch
/ \
/ \
-------------------------------------------- trunk
S M
The modification of the trunk between the splitting point S and the merging
point M has already been merged into "cannot_wait_for_CGAL-3.2".
The trunk versions of these three packages have been removed already.
29 lines
1.3 KiB
C
29 lines
1.3 KiB
C
// Copyright (c) 2006 INRIA Sophia-Antipolis (France).
|
|
// All rights reserved.
|
|
//
|
|
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
|
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
//
|
|
// $URL$
|
|
// $Id$
|
|
//
|
|
//
|
|
// Author(s) : Steve OUDOT, Laurent RINEAU
|
|
|
|
|
|
///////////////// Definitions of several famous surfaces /////////////////
|
|
double sphere_function (double, double, double); // (c=(0,0,0), r=1)
|
|
double ellipsoid_function (double, double, double); // (c=(0,0,0), r=1)
|
|
double torus_function (double, double, double); // (c=(0,0,0), r=2)
|
|
double chair_function (double, double, double); // (c=(0,0,0), r=6)
|
|
double tanglecube_function (double, double, double); // (c=(0,0,0), r=4)
|
|
double octic_function (double, double, double); // (c=(0,0,0), r=2)
|
|
double heart_function (double, double, double); // (c=(0,0,0), r=2)
|
|
double klein_function (double, double, double); // (c=(0,0,0), r=4)
|
|
double ring_function (double, double, double); // (c=(0,0,0), r=?)
|
|
double false_knot_function (double, double, double); // (c=(0,0,0), r=1)
|
|
double knot1_function (double, double, double); // (c=(0,0,0), r=4)
|
|
double knot2_function (double, double, double); // (c=(0,0,0), r=4)
|
|
double knot3_function (double, double, double); // (c=(0,0,0), r=4)
|
|
double cube_function (double, double, double); // (c=(0,0,0), r=2)
|