Ignore:
Timestamp:
10/14/05 02:05:13 (19 years ago)
Author:
mattausch
Message:

completed ray based split stuff (but not debugged yet)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/src/Ray.h

    r327 r328  
    140140 
    141141  // returns ID of this ray (use for mailboxes) 
    142   int GetID() const { return ID; } 
     142  int GetId() const { return ID; } 
    143143 
    144144  // returns the transfrom ID of the ray (use for ray transformations) 
     
    149149   
    150150  // set unique ID for a given ray - always avoid setting to zero 
    151   void SetID() { 
     151  void SetId() { 
    152152    if ((ID = ++genID) == 0) 
    153153      ID = ++genID; 
     
    156156  // set ID to explicit value - it can be even 0 for rays transformed 
    157157  // to the canonical object space to supress the mailbox failure. 
    158   void SetID(int newID) { 
     158  void SetId(int newID) { 
    159159    ID = newID; 
    160160    // note that transfID is not changed! 
Note: See TracChangeset for help on using the changeset viewer.