Skip to content

Commit

Permalink
revert setup mod from v2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
paddywwoof committed Jan 17, 2016
1 parent d8f99ac commit eed7d94
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 5 deletions.
22 changes: 22 additions & 0 deletions ChangeLog.txt
Expand Up @@ -4,6 +4,28 @@ Tim Skillman, Patrick Gaunt, Tom Ritchford

Date Amends

v2.9
2016-01-16 Bug fixes: glReadPixels fixed on linux and windows so Screenshot
and ClashTest work. glBufferData ctypes pointer fixed explicitly
to c_float allows large buffers to work.
Improvements: Optionally use setuptools, Mouse button more useful.
Options to free numpy array after image loaded, to use different
dispmanx layers and use different texture formats (apart from
GL_RGB and GL_RGBA), xbox event structure fix, X11 keyboard
release events stored.

v2.8
2015-11-07 some overdue, significant improvements to the way the light
vector is mapped to the plane of the tangent and cotangent vectors.
(needed for normal map effect). fixes to the Mouse and Keyboard
classes to make behaviour more similar across platforms Matt's
FastText and TextBlock classes and the uv_pointsprite shader
mods to the Font class so it can work either with the FastTest
or String classes following Peter Farrell's suggestion, a method
in Camera that does the reset() rotate() and position() and
returns the new location for a Camera moving over an ElevationMap
taking into account surface steepness.

v2.7
2015-08-14 Much improved shadow casting using depth mapping to OffScreenTexture.
Shape.lathe() patched so normal on first leg of path realistic,
Expand Down
14 changes: 9 additions & 5 deletions setup.py
Expand Up @@ -18,11 +18,15 @@
import sys
sys.append('/home/pi/pi3d')
"""
try:
from setuptools.commands import setup
except ImportError:
from distutils.core import setup
# see the pull request from stuaxo here https://github.com/tipam/pi3d/pull/183
as to why you might want to uncomment the following four lines (and comment
out the 'from distutils.core..' after. """
#try:
# from setuptools.commands import setup
#except ImportError:
# from distutils.core import setup
from distutils.core import setup
from os import listdir

setup(name='pi3d',
Expand Down

0 comments on commit eed7d94

Please sign in to comment.