File: cpg3d.h

package info (click to toggle)
dpuser 4.3%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 14,628 kB
  • sloc: cpp: 148,693; ansic: 18,648; fortran: 5,815; lex: 1,116; makefile: 760; yacc: 741; sh: 390; pascal: 98
file content (37 lines) | stat: -rw-r--r-- 2,904 bytes parent folder | download | duplicates (4)
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
#ifndef CPG3D_H
#define CPG3D_H

#ifdef __cplusplus
extern "C" {
#endif

void cfreddy(const float *a, int kx, int ny, float size, float angle);
void csbfint(const float *rgb, int ic, int ibmode, int ibuf, int *maxbuf);
void csbfbkg(int ic1, int ic2, int ishade);
void csbfsav(int ibuf);
void csbfcls(int ibuf);
void ccolint(const float *rgb, int ic1, int ic2, float diffuse, float shine, float polish);
void ccoltab(const float *rgb, int ncol, float alfa, int ic1, int ic2);
void ccolsrf(const float *rgb, int ncol, float alfa, int ic1, int ic2, int ncband, float difuse, float shine, float polish);
void csbball(const float *eye, const float *centre, float radius, int ic1, int ic2, const float *light, int lshine, float *x0, float *y0, float *r0);
void csbtbal(const float *eye, const float *centre, float radius, int ic1, int ic2, const float *light, int lshine, float *x0, float *y0, float *r0, int itrans);
void csbplan(const float *eye, float nv, const float *vert, int ic1, int ic2, const float *light);
void csbplnt(const float *eye, float nv, const float *vert, int ic1, int ic2, const float *light, int itrans);
void csbrod(const float *eye, const float *end1, const float *end2, float radius, int ic1, int ic2, const float *light, int nsides, int lend);
void csbcone(const float *eye, const float *base, const float *apex, float radius, int ic1, int ic2, const float *light, int nsides);
void csbelip(const float *eye, const float *centre, const float *paxes, int ic1, int ic2, const float *light, int lshine, int icline, float anglin, float *x0, float *y0, float *r0);
void csbline(const float *eye, const float *end1, const float *end2, int icol, int ldash);
void csbtext(const float *eye, const char *text, int icol, const float *pivot, float fjust, const float *orient, float size);
void csbsurf(const float *eye, const float *latice, float *dens, int n1, int n2, int n3, float dsurf, int ic1, int ic2, const float *light, int lshine);
void csbtsur(const float *eye, const float *latice, float *dens, int n1, int n2, int n3, float dsurf, int ic1, int ic2, const float *light, int lshine, int itrans);
void csbslic(const float *eye, const float *latice, float *dens, int n1, int n2, int n3, float dlow, float dhigh, int ic1, int ic2, const float *slnorm, const float *aponit, int icedge);
void csbcpln(const float *eye, const float *latice, int ic1, int ic2, const float *light, const float *slnorm, const float *aponit, int icedge, int itrans);
void csb2srf(const float *eye, const float *latice, float *dens, int n1, int n2, float dlow, float dhigh, float dvert, int ic1, int ic2, int ncband, const float *light, int lshine);
void cxtal(const float *x, int nx, const float *y, int ny, float *z, int n1, int n2, float w, float size, int iwidth, const char *xlbl, const char *ylbl, const char *titl);

#ifdef __cplusplus
}
#endif

#endif /* CPG3D_H */