solstice-solver

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

commit f271feacccc91ed0903993b67e9c976e5d31b39e
parent c3c23fe4279dd83a43f4d9f6552630405738b5dd
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 28 Jun 2016 14:46:39 +0200

Remove the API for quadrics, as it should have been remove before

(in 1752f8c6fbd3a87385d3bc5401edf9a127bdc815)

Diffstat:
Msrc/ssol.h | 40----------------------------------------
1 file changed, 0 insertions(+), 40 deletions(-)

diff --git a/src/ssol.h b/src/ssol.h @@ -323,46 +323,6 @@ ssol_mesh_setup void* data); /******************************************************************************* -* Quadric API - Define an equation that can be used to define a punched surface -******************************************************************************/ - -/* Define z = 0 in local space; no further setting available */ -SSOL_API res_T -ssol_quadric_create_plane - (struct ssol_device* dev, - struct ssol_quadric** plane); - -SSOL_API res_T -ssol_quadric_create_parabol - (struct ssol_device* dev, - struct ssol_quadric** parabol); - -SSOL_API res_T -ssol_quadric_create_parabolic_cylinder - (struct ssol_device* dev, - struct ssol_quadric** parabolic_cylinder); - -/* Define x^2 + y^2 - 4 focal z = 0 in local space */ -SSOL_API res_T -ssol_quadric_parabol_set_focal - (struct ssol_quadric* parabol, - double focal); - -/* Define y^2 - 4 focal z = 0 in local space */ -SSOL_API res_T -ssol_quadric_parabolic_cylinder_set_focal - (struct ssol_quadric* parabolic_cylinder, - double focal); - -SSOL_API res_T -ssol_quadric_ref_get - (struct ssol_quadric* quadric); - -SSOL_API res_T -ssol_quadric_ref_put - (struct ssol_quadric* quadric); - -/******************************************************************************* * Material API - Define the surfacic (e.g.: BRDF) as well as the volumic * (e.g.: refractive index) properties of a geometry. ******************************************************************************/