Skip to content
Snippets Groups Projects
Commit 710ec6e2 authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 997bff11
No related branches found
No related tags found
No related merge requests found
// $Id: CutMap.cpp,v 1.6 2001-07-30 13:22:21 geuzaine Exp $
#include "CutMap.h"
#include "List.h"
double opt_cut_map_A(OPT_ARGS_NUM)
{
return 0;
}
#include "List.h"
StringXNumber CutMapOptions_Number[] = {
{ GMSH_FULLRC, "A" , opt_cut_map_A , 1. },
{ GMSH_FULLRC, "iView" , opt_cut_map_A , 1. }
{ GMSH_FULLRC, "A" , NULL , 1. },
{ GMSH_FULLRC, "iView" , NULL , 1. }
};
extern "C"
......
#include "CutPlane.h"
#include "List.h"
/*
Plugin Entry : GMSH_RegisterPlugin
*/
// that's the bad part of the story ...
// $Id: CutPlane.cpp,v 1.5 2001-07-30 13:22:21 geuzaine Exp $
double opt_cut_plane_A(OPT_ARGS_NUM)
{
return 0;
}
#include "CutPlane.h"
#include "List.h"
StringXNumber CutPlaneOptions_Number[] = {
{ GMSH_FULLRC, "A" , opt_cut_plane_A , 1. },
{ GMSH_FULLRC, "B" , opt_cut_plane_A , 1. },
{ GMSH_FULLRC, "C" , opt_cut_plane_A , 1. },
{ GMSH_FULLRC, "D" , opt_cut_plane_A , 1. },
{ GMSH_FULLRC, "iView" , opt_cut_plane_A , 1. }
{ GMSH_FULLRC, "A" , NULL , 1. },
{ GMSH_FULLRC, "B" , NULL , 1. },
{ GMSH_FULLRC, "C" , NULL , 1. },
{ GMSH_FULLRC, "D" , NULL , 1. },
{ GMSH_FULLRC, "iView" , NULL , 1. }
};
extern "C"
......
// $Id: CutSphere.cpp,v 1.5 2001-07-30 13:22:21 geuzaine Exp $
#include <string.h>
#include "CutSphere.h"
double opt_cut_sphere_Xc(OPT_ARGS_NUM)
{
return 0;
}
StringXNumber CutSphereOptions_Number[] = {
{ GMSH_FULLRC, "Xc" , opt_cut_sphere_Xc , 1. },
{ GMSH_FULLRC, "Yc" , opt_cut_sphere_Xc , 1. },
{ GMSH_FULLRC, "Zc" , opt_cut_sphere_Xc , 1. },
{ GMSH_FULLRC, "R" , opt_cut_sphere_Xc , 1. }
{ GMSH_FULLRC, "Xc" , NULL , 1. },
{ GMSH_FULLRC, "Yc" , NULL , 1. },
{ GMSH_FULLRC, "Zc" , NULL , 1. },
{ GMSH_FULLRC, "R" , NULL , 1. }
};
extern "C"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment