Revision: 51591
          http://brlcad.svn.sourceforge.net/brlcad/?rev=51591&view=rev
Author:   anrgmrty
Date:     2012-07-19 11:02:23 +0000 (Thu, 19 Jul 2012)
Log Message:
-----------
callback functions hidden, hit function renamed

Modified Paths:
--------------
    brlcad/trunk/src/libanalyze/voxels.c

Modified: brlcad/trunk/src/libanalyze/voxels.c
===================================================================
--- brlcad/trunk/src/libanalyze/voxels.c        2012-07-19 11:01:17 UTC (rev 
51590)
+++ brlcad/trunk/src/libanalyze/voxels.c        2012-07-19 11:02:23 UTC (rev 
51591)
@@ -34,7 +34,7 @@
 /**
  * Function to assign a new region to a voxel.
  */
-void
+HIDDEN void
 setRegionName(struct bu_vls **vp, const char **nameSource, const char 
**nameDestination) {
     size_t newlen;
 
@@ -60,7 +60,7 @@
  * The 'segs' segment list is unused in this example.
  */
 int
-hit(struct application *ap, struct partition *PartHeadp, struct 
seg*UNUSED(segs))
+hit_voxelize(struct application *ap, struct partition *PartHeadp, struct 
seg*UNUSED(segs))
 {
     struct partition *pp;
     struct rayInfo *voxelHits;
@@ -276,7 +276,7 @@
            ap.a_onehit = 0;
            VSET(ap.a_ray.r_dir, 1.0, 0.0, 0.0);
 
-           ap.a_hit = hit;
+           ap.a_hit = hit_voxelize;
            ap.a_miss = NULL;
            ap.a_uptr = &voxelHits;
 

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
BRL-CAD Source Commits mailing list
brlcad-commits@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to