| 184 | |
| 185 | |
| 186 | int |
| 187 | X11Renderer::drawPoint(const Vector &pos1, float V1, int tag, int mode, int numPixels) |
| 188 | { |
| 189 | float r, g, b; |
| 190 | r = theMap->getRed(V1); |
| 191 | g = theMap->getGreen(V1); |
| 192 | b = theMap->getBlue(V1); |
| 193 | |
| 194 | if (aFile == 1) { |
| 195 | theFile << "Point\n" << pos1(0) << " " << pos1(1) << " " << pos1(2) |
| 196 | << " " << r << " " << g << " " << b << " " << endln; |
| 197 | } |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | |
| 203 | int |
no test coverage detected