Searched refs:mapsize (Results 1 – 1 of 1) sorted by relevance
| /petsc/src/sys/classes/draw/utils/ |
| H A D | cmap.c | 55 static PetscErrorCode PetscDrawCmap_Hue(int mapsize, unsigned char R[], unsigned char G[], unsigned… in PetscDrawCmap_Hue() argument 61 for (i = 0; i < mapsize; i++) { in PetscDrawCmap_Hue() 62 double hue = maxhue * (double)i / (mapsize - 1), r, g, b; in PetscDrawCmap_Hue() 72 static PetscErrorCode PetscDrawCmap_Gray(int mapsize, unsigned char R[], unsigned char G[], unsigne… in PetscDrawCmap_Gray() argument 75 …for (int i = 0; i < mapsize; i++) R[i] = G[i] = B[i] = (unsigned char)((255.0 * i) / (mapsize - 1)… in PetscDrawCmap_Gray() 79 static PetscErrorCode PetscDrawCmap_Jet(int mapsize, unsigned char R[], unsigned char G[], unsigned… in PetscDrawCmap_Jet() argument 85 for (i = 0; i < mapsize; i++) { in PetscDrawCmap_Jet() 86 double u = (double)i / (mapsize - 1); in PetscDrawCmap_Jet() 125 static PetscErrorCode PetscDrawCmap_Hot(int mapsize, unsigned char R[], unsigned char G[], unsigned… in PetscDrawCmap_Hot() argument 131 for (i = 0; i < mapsize; i++) { in PetscDrawCmap_Hot() [all …]
|