Add rectangle test tool/example

This commit is contained in:
Hector Martin 2011-10-07 21:33:17 +01:00
parent e040adcc9c
commit 8242115064

27
examples/rect.py Normal file
View file

@ -0,0 +1,27 @@
# OpenLase - a realtime laser graphics toolkit
#
# Copyright (C) 2009-2011 Hector Martin "marcan" <hector@marcansoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 or version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import pylase as ol
from math import pi
ol.init()
while True:
ol.loadIdentity()
ol.scale((0.999, 0.999))
ol.rect((-1,-1),(1,1),ol.C_WHITE)
ol.renderFrame(100)