Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1485 - trunk/SwigInterface


Chronological Thread 
  • From: bigler@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1485 - trunk/SwigInterface
  • Date: Tue, 17 Jul 2007 15:02:24 -0600 (MDT)

Author: bigler
Date: Tue Jul 17 15:02:23 2007
New Revision: 1485

Modified:
   trunk/SwigInterface/mantainterface.i
Log:

SwigInterface/mantainterface.i

  It looks like warning 512 can't be suppressed on older versions of
  SWIG, so I'm going to explicitly ignore the const versions of
  functions.


Modified: trunk/SwigInterface/mantainterface.i
==============================================================================
--- trunk/SwigInterface/mantainterface.i        (original)
+++ trunk/SwigInterface/mantainterface.i        Tue Jul 17 15:02:23 2007
@@ -32,6 +32,10 @@
 #pragma SWIG nowarn=512
 
 %include "std_string.i"
+%ignore std::vector::begin() const;
+%ignore std::vector::end() const;
+%ignore std::vector::rbegin() const;
+%ignore std::vector::rend() const;
 %include "std_vector.i"
 %include "exception.i"
 
@@ -173,6 +177,9 @@
 %include <Interface/TexCoordMapper.h>
 %include <Core/Util/Align.h>
 %include <Core/Util/About.h>
+%ignore Manta::RayPacket::getOrigin(int, int) const;
+%ignore Manta::RayPacket::getDirection(int, int) const;
+%ignore Manta::RayPacket::getInverseDirection(int, int) const;
 %include <Interface/RayPacket.h>
 %include <Interface/AccelerationStructure.h>
 %include <Interface/ShadowAlgorithm.h>
@@ -210,6 +217,10 @@
    class BasicCameraData;
 }
 
+%ignore Manta::Scene::getObject() const;
+%ignore Manta::Scene::getBackground() const;
+%ignore Manta::Scene::getLights() const;
+%ignore Manta::Scene::getRenderParameters() const;
 %include <Interface/Scene.h>
 
 %include <Interface/CallbackHelpers.h>
@@ -352,6 +363,7 @@
 %}
 
 %include <Interface/Light.h>
+%ignore Manta::LightSet::getLight(int) const;
 %include <Interface/LightSet.h>
 %include <Interface/AmbientLight.h>
 %include <Interface/Background.h>
@@ -410,6 +422,7 @@
 #include <Model/Groups/Group.h>
 #include <Model/Groups/Mesh.h>
 %}
+%ignore Manta::Group::get(size_t) const;
 %include <Model/Groups/Group.h>
 %include <Model/Groups/Mesh.h>
 




  • [MANTA] r1485 - trunk/SwigInterface, bigler, 07/17/2007

Archive powered by MHonArc 2.6.16.

Top of page