Semantic indentation (OpenGL)

Stuart D. Gathman stuart at bmsi.com
Fri Oct 12 11:34:25 EDT 2001


In article <mailman.1002897314.27097.python-list at python.org>, "Marek
Kroèák" <mk at ji.cz> wrote:


> glBegin(GL_POINTS);
> 	...
> 	glVertex3f(...);
> 	...
> glEnd();

glBegin(GL_POINTS)
try:
  ...
  glVertex3f(...)
  ...
finally:
  glEnd()


-- 
	      Stuart D. Gathman <stuart at bmsi.com>
Business Management Systems Inc.  Phone: 703 591-0911 Fax: 703 591-6154
"Confutatis maledictis, flamis acribus addictis" - background song for
a Microsoft sponsored "Where do you want to go from here?" commercial.



More information about the Python-list mailing list