solstice-solver

Solver library of the solstice app
git clone git://git.meso-star.com/solstice-solver.git
Log | Files | Refs | README | LICENSE

commit cb5c741425006e204f4ad27a21cf16a43216ddef
parent 39b860435a2ff55cb250df4dc00da69a3c807d8a
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Wed, 12 Apr 2017 10:35:56 +0200

Remove dead code.

Diffstat:
Msrc/ssol_shape.c | 10----------
1 file changed, 0 insertions(+), 10 deletions(-)

diff --git a/src/ssol_shape.c b/src/ssol_shape.c @@ -1405,16 +1405,6 @@ priv_quadric_data_compute_slices_count_radius return nslices; } -static void -get_circular(const size_t ivert, double position[2], void* ctx) -{ - struct get_ctx* data = (struct get_ctx*)ctx; - const double a = (double)ivert * data->two_pi_over_nbvert; - ASSERT(ivert < data->nbvert); - position[0] = data->radius * cos(a); - position[1] = data->radius * sin(a); -} - static void mesh_ctx_s3dut_get_ids(const unsigned itri, unsigned ids[3], void* ctx) {