home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / lib / site-packages / cgkit / riutil.py < prev    next >
Encoding:
Python Source  |  2007-01-11  |  5.4 KB  |  178 lines

  1. # ***** BEGIN LICENSE BLOCK *****
  2. # Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3. #
  4. # The contents of this file are subject to the Mozilla Public License Version
  5. # 1.1 (the "License"); you may not use this file except in compliance with
  6. # the License. You may obtain a copy of the License at
  7. # http://www.mozilla.org/MPL/
  8. #
  9. # Software distributed under the License is distributed on an "AS IS" basis,
  10. # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11. # for the specific language governing rights and limitations under the
  12. # License.
  13. #
  14. # The Original Code is the Python Computer Graphics Kit.
  15. #
  16. # The Initial Developer of the Original Code is Matthias Baas.
  17. # Portions created by the Initial Developer are Copyright (C) 2004
  18. # the Initial Developer. All Rights Reserved.
  19. #
  20. # Contributor(s):
  21. #
  22. # Alternatively, the contents of this file may be used under the terms of
  23. # either the GNU General Public License Version 2 or later (the "GPL"), or
  24. # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  25. # in which case the provisions of the GPL or the LGPL are applicable instead
  26. # of those above. If you wish to allow use of your version of this file only
  27. # under the terms of either the GPL or the LGPL, and not to allow others to
  28. # use your version of this file under the terms of the MPL, indicate your
  29. # decision by deleting the provisions above and replace them with the notice
  30. # and other provisions required by the GPL or the LGPL. If you do not delete
  31. # the provisions above, a recipient may use your version of this file under
  32. # the terms of any one of the MPL, the GPL or the LGPL.
  33. #
  34. # ***** END LICENSE BLOCK *****
  35. # $Id: riutil.py,v 1.1.1.1 2004/12/12 14:31:21 mbaas Exp $
  36.  
  37. import types, sys
  38. from cgtypes import vec3
  39. from ri import *
  40. try:
  41.     import Image
  42.     _PIL_installed = 1
  43. except ImportError:
  44.     _PIL_installed = 0
  45.  
  46.  
  47. def RiuDefaultHeader():
  48.     """Outputs a default header into the RIB stream.
  49.  
  50.     This function can be called right after RiBegin() to write the
  51.     following information into the RIB stream:
  52.  
  53.     ##RenderMan RIB-Structure 1.1
  54.     ##Creator <Filename>
  55.     ##CreationDate <Date>
  56.     ##For <User>
  57.  
  58.     The "For" information is left out if the user name can't be determined.
  59.     """
  60.     RiArchiveRecord(RI_STRUCTURE,"RenderMan RIB-Structure 1.1")
  61.     RiArchiveRecord(RI_STRUCTURE,"Creator %s",sys.argv[0])
  62.     RiArchiveRecord(RI_STRUCTURE,"CreationDate %s",time.ctime())
  63.     try:
  64.         RiArchiveRecord(RI_STRUCTURE,"For %s",getpass.getuser())
  65.     except:
  66.         pass
  67.     
  68.  
  69. def RiuArrow(height=1.0, thickness=0.1, headheight=0.2, headscale=1.7):
  70.     """Outputs an arrow.
  71.  
  72.     The arrow starts in the origin and ends in (0,0,height). thickness is the
  73.     overall thickness of the arrow, headheight and headscale specify the
  74.     height and a factor for the radius of the arrow head.
  75.     """
  76.     
  77.     # Radius for arrow head (paraboloid)
  78.     rmax = headscale*thickness
  79.     a = headheight/(rmax*rmax)
  80.     offset = a*thickness*thickness
  81.     RiTransformBegin()
  82.     RiCylinder(thickness, 0,height-0.01-offset, 360)
  83.     RiTranslate(0,0,height)
  84. #    RiRotate(180,1,0,0)
  85.     RiParaboloid(rmax, 0,-headheight,360)
  86.     RiTransformEnd()
  87.  
  88. def RiuCoordSystem(thickness=0.06, shader="matte"):
  89.     """Outputs a coordinate system.
  90.  
  91.     The X-,Y- and Z-axis are colored red, green and blue. thickness
  92.     specifies the thickness of the arrows and shader is used as
  93.     surface shader for the entire coordinate system.    
  94.     """
  95.     
  96.     RiAttributeBegin()
  97.     RiSurface(shader)
  98.     # X axis
  99.     RiColor((1,0,0))
  100.     RiTransformBegin()
  101.     RiRotate(90, 0,1,0)
  102.     RiuArrow(thickness=thickness)
  103.     RiTransformEnd()
  104.  
  105.     # Y axis
  106.     RiColor((0,1,0))
  107.     RiTransformBegin()
  108.     RiRotate(-90, 1,0,0)
  109.     RiuArrow(thickness=thickness)
  110.     RiTransformEnd()
  111.  
  112.     # Z axis
  113.     RiColor((0,0,1))
  114.     RiuArrow(thickness=thickness)
  115.     
  116.     RiAttributeEnd()
  117.  
  118.  
  119. def RiuGrid(thickness=0.02, cells=6, shader="matte", color=(0.9,0.9,0.9)):
  120.     """Output a grid primitive.
  121.  
  122.     thickness determines the thickness of the grid lines and cells the
  123.     number of gridlines.  The grid lies on the XY plane and is
  124.     centered at the origin. The grid spacing is 1 unit. The grid uses
  125.     the given shader and color.
  126.     """
  127.  
  128.     if cells%2==1: cells+=1
  129.     
  130.     RiAttributeBegin()
  131.     RiSurface(shader)
  132.     RiColor(color)
  133.  
  134.     RiTransformBegin()
  135.     RiRotate(-90,1,0,0)
  136.     RiTranslate(-cells/2,0,-cells/2)
  137.     for i in range(cells+1):
  138.         RiCylinder(thickness,0,cells,360)
  139.         RiTranslate(1,0,0)
  140.     RiTransformEnd()
  141.  
  142.     RiTransformBegin()
  143.     RiRotate(90,0,1,0)
  144.     RiTranslate(0,-cells/2,-cells/2)
  145.     for i in range(cells+1):
  146.         RiCylinder(thickness,0,cells,360)
  147.         RiTranslate(0,1,0)
  148.     RiTransformEnd()
  149.  
  150.     RiAttributeEnd()
  151.  
  152.  
  153. def RiuHeightfield(image):
  154.     if not _PIL_installed:
  155.         raise ImportError, "the Python Imaging Library (PIL) is not installed"
  156.     
  157.     if type(image)==types.StringType or type(image)==types.UnicodeType:
  158.         image = Image.open(image)
  159.  
  160.     points = []
  161.     width, height = image.size
  162.     for j in range(height):
  163.         y = float(j)/(height-1)
  164.         for i in range(width):
  165.             x = float(i)/(height-1)
  166.             col=image.getpixel((i,j))
  167.             z=col[0]/255.0
  168.             p=vec3(x,y,z)
  169.             points.append(p)
  170.  
  171.     RiPatchMesh(RI_BILINEAR, width, RI_NONPERIODIC, height, RI_NONPERIODIC, P=points)
  172.  
  173.  
  174. ##########################################################
  175.  
  176. if __name__=='__main__':
  177.     pass
  178.