00001 00004 extern void createPlotmtvFile 00005 ( BSpline& spline, 00006 const VecSimple(real)& x, 00007 const String& filename, 00008 const char* title = "B-spline" 00009 ); 00010 00011 extern void createPlotmtvFile 00012 ( ParametricBSpline& spline, 00013 int resolution, 00014 const String& filename, 00015 const char* title = "Parametric B-spline" 00016 ); 00017 00018 extern void createPlotmtvFile 00019 ( ParametricBSpline& spline, 00020 const VecSimple(real)& t, 00021 const String& filename, 00022 const char* title = "Parametric B-spline" 00023 ); 00024 00025 00026 extern void createPlotmtvFile 00027 ( TPSurface& spline, 00028 const VecSimple(real)& x, 00029 const VecSimple(real)& y, 00030 const String& filename, 00031 Format_type format = BINARY, 00032 const char* title = "Tensor Product Spline Surface", 00033 const char* options = "" 00034 ); 00035 00036 extern void createPlotmtvFile 00037 ( ParametricTPSurface& spline, 00038 int num1, 00039 int num2, 00040 const String& filename, 00041 Format_type format = BINARY, 00042 const char* title = 00043 "Parametric Tensor Product Spline Surface", 00044 const char* options = "" 00045 ); 00046 00047 extern void createMathFile 00048 ( TPSurface& spline, 00049 const VecSimple(real)& x, 00050 const VecSimple(real)& y, 00051 const String& filename 00052 ); 00053 00054 extern void createMathFile 00055 ( ParametricTPSurface& spline, 00056 int num1, 00057 int num2, 00058 const String& filename 00059 ); 00060 00061 00062