#include "stepblob.h"
#include "allheaders.h"
 
Go to the source code of this file.
      
        
          | void RotateOutlineList  | 
          ( | 
          const FCOORD &  | 
          rotation,  | 
        
        
           | 
           | 
          C_OUTLINE_LIST *  | 
          outlines  | 
        
        
           | 
          ) | 
           |  | 
        
      
 
Definition at line 362 of file stepblob.cpp.
  363   C_OUTLINE_LIST new_outlines;
 
  364   C_OUTLINE_IT src_it(outlines);
 
  365   C_OUTLINE_IT dest_it(&new_outlines);
 
  366   while (!src_it.empty()) {
 
  367     C_OUTLINE* old_outline = src_it.extract();
 
  370     if (!old_outline->
child()->empty()) {
 
  372       C_OUTLINE_IT child_it(new_outline->
child());
 
  373       child_it.add_list_after(old_outline->
child());
 
  376     dest_it.add_to_end(new_outline);
 
  378   src_it.add_list_after(&new_outlines);
 
void RotateOutlineList(const FCOORD &rotation, C_OUTLINE_LIST *outlines)
 
 
 
 
      
        
          | const double kMaxPerimeterWidthRatio = 8.0 |