1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) 2006 - INRIA - Djalel Abdemouche
* Copyright (C) 2006 - INRIA - Jean-Baptiste Silvy
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
*
*/
/*------------------------------------------------------------------------*/
/* file: sciCall.h */
/* desc : Graphic subroutines interface */
/*------------------------------------------------------------------------*/
#ifndef _SCI_CALL_H_
#define _SCI_CALL_H_
#include "dynlib_graphics.h"
#include "BOOL.h"
#include "ObjectStructure.h"
GRAPHICS_IMPEXP void Objrect ( double * x ,
double * y ,
double * width ,
double * height ,
int * foreground,
int * background,
BOOL isfilled ,
BOOL isline ,
long * hdl ) ;
GRAPHICS_IMPEXP void Objarc( double * angle1 ,
double * angle2 ,
double * x ,
double * y ,
double * width ,
double * height ,
int * foreground,
int * background,
BOOL isfilled ,
BOOL isline ,
long * hdl ) ;
GRAPHICS_IMPEXP void Objpoly ( double * x ,
double * y ,
int n ,
int closed,
int mark ,
long * hdl ) ;
GRAPHICS_IMPEXP void Objfpoly ( double * x ,
double * y ,
int n ,
int * style,
long * hdl ,
int shading ) ;
GRAPHICS_IMPEXP void Objsegs ( int * style,
int flag ,
int n1 ,
double * x ,
double * y ,
double * z ,
double arsize ) ;
GRAPHICS_IMPEXP void Objstring( char ** fname ,
int nbRow ,
int nbCol ,
double x ,
double y ,
double * angle ,
double box[4] ,
BOOL autoSize ,
double userSize[2],
long * hdl ,
BOOL centerPos ,
int * foreground ,
int * background ,
BOOL isboxed ,
BOOL isline ,
BOOL isfilled ,
sciTextAlignment alignment ) ;
GRAPHICS_IMPEXP void Objplot2d ( int ptype ,
char logflags[],
double x[] ,
double y[] ,
int * n1 ,
int * n2 ,
int style[] ,
char strflag[] ,
char legend[] ,
double brect[] ,
int aaint[] ,
BOOL flagNax ) ;
GRAPHICS_IMPEXP void Objgrayplot ( double x[] ,
double y[] ,
double z[] ,
int * n1 ,
int * n2 ,
char strflag[],
double brect[] ,
int aaint[] ,
BOOL flagNax ) ;
GRAPHICS_IMPEXP void Objmatplot (double z[] ,
int * n1 ,
int * n2 ,
char strflag[],
double brect[] ,
int aaint[] ,
BOOL flagNax ) ;
GRAPHICS_IMPEXP void Objmatplot1 ( double z[],
int * n1 ,
int * n2 ,
double xrect[] ) ;
GRAPHICS_IMPEXP void Objplot3d ( char * fname ,
int * isfac ,
int * izcol ,
double x[] ,
double y[] ,
double z[] ,
double * zcol ,
int * m ,
int * n ,
double * theta ,
double * alpha ,
char * legend,
int * iflag ,
double * ebox ,
int * m1 , /*Adding F.Leray 12.03.04 and 19.03.04*/
int * n1 ,
int * m2 ,
int * n2 ,
int * m3 ,
int * n3 ,
int * m3n ,
int * n3n ) ;
GRAPHICS_IMPEXP void Objdrawaxis ( char dir ,
char tics ,
double * x ,
int * nx ,
double * y ,
int * ny ,
char * val[] ,
int subint ,
char * format ,
int font ,
int textcol,
int ticscol,
char flag ,
int seg ,
int nb_tics_labels ) ;
GRAPHICS_IMPEXP void Objnumb( char * fname ,
unsigned long fname_len,
int n ,
int flag ,
double x ,
double y ,
double * angle ,
double * box ) ;
GRAPHICS_IMPEXP void Objfec ( double x[] ,
double y[] ,
double noeud[] ,
double * fun ,
int * n ,
int * m ,
char strflag[] ,
char legend[] ,
double brect[] ,
int aaint[] ,
double Zminmax[] ,
int Colminmax[],
int ColOut[] ,
BOOL WithMesh ,
BOOL flagNax ) ;
#endif /* _SCI_CALL_H_ */
|