MCPcopy Create free account
hub / github.com/OpenSees/OpenSees / drawLeftTriangle

Function drawLeftTriangle

SRC/renderer/main.cpp:66–76  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

64}
65
66static void drawLeftTriangle(void)
67{
68 /* draw yellow triangle on LHS of screen */
69
70 glBegin (GL_TRIANGLES);
71 glColor4f(1.0, 1.0, 0.0, 0.75);
72 glVertex3f(0.1, 0.9, 0.0);
73 glVertex3f(0.1, 0.1, 0.0);
74 glVertex3f(0.7, 0.5, 0.0);
75 glEnd();
76}
77
78static void drawRightTriangle(void)
79{

Callers 1

doImageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected