Skip to content
Snippets Groups Projects
  1. May 26, 2010
  2. May 25, 2010
  3. May 21, 2010
  4. May 20, 2010
    • David Partyka's avatar
    • David Partyka's avatar
      Update Xdmf version to Remove vtk(Cxx|Type)RevisionMacro · b875981c
      David Partyka authored
        The CVS $Revision$ keyword replacement will no longer maintain these
        macros automatically.  They were used only to implement CollectRevisions
        and vtkObjectBase::PrintRevisions, an API that was never used.
      
        Automated as follows:
      
          pass 0:
          catch templates
          ---------------
          $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<'
      
          pass 1:
          main changes
          ---------------
          $ git grep -l '^vtkCxxRevisionMacro' | while read file; do
            echo "$file" 1>&2
            perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file
          done
          $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do
            echo "$file" 1>&2
            perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file
          done
      
          pass 2:
          verify
          ---------------
          $ git grep 'vtk\(Cxx\|Type\)RevisionMacro'
      
        Fixed multi-line vtkCxxRevisionMacro and templates by hand.
      b875981c
    • David Partyka's avatar
      STYLE: Remove tabs. · ae584a22
      David Partyka authored
      ae584a22
    • David Partyka's avatar
    • Mark Olesen's avatar
      Remove vtk(Cxx|Type)RevisionMacro · 2eee7d11
      Mark Olesen authored and Brad King's avatar Brad King committed
      The CVS $Revision$ keyword replacement will no longer maintain these
      macros automatically.  They were used only to implement CollectRevisions
      and vtkObjectBase::PrintRevisions, an API that was never used.
      
      Automated as follows:
      
        pass 0:
        catch templates
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro' | grep '<'
      
        pass 1:
        main changes
        ---------------
        $ git grep -l '^vtkCxxRevisionMacro' | while read file; do
          echo "$file" 1>&2
          perl -i -ne 'print unless (/^vtkCxxRevisionMacro/ and /\)/)' $file
        done
        $ git grep -l -e 'vtkTypeRevisionMacro(' | while read file; do
          echo "$file" 1>&2
          perl -i -pe 's/vtkTypeRevisionMacro/vtkTypeMacro/g' $file
        done
      
        pass 2:
        verify
        ---------------
        $ git grep 'vtk\(Cxx\|Type\)RevisionMacro'
      
      Fixed multi-line vtkCxxRevisionMacro and templates by hand.
      2eee7d11
  5. May 18, 2010
    • David Partyka's avatar
      COMP: reqinfo is now being used. · 81af9330
      David Partyka authored
      81af9330
    • David Partyka's avatar
      BUG: Fixes so both outputs contain time. · e2aa088c
      David Partyka authored
      Conflicts:
      
      Parallel/vtkWindBladeReader.cxx
      e2aa088c
    • David Partyka's avatar
      BUG: Fixes for VRMLImporter and a new test. · 63bf8548
      David Partyka authored
      1) Currently the class does not support the "normalIndex" field.  It assumed that the number of normals matched the number or vertex.  The "normalIndex" field was ignored.  The code has been changed to process the normals the same as the "tcoords" in that it correctly maps the normals to the vertex points.
      
      2) The "colorIndex" field always assumed that the colors are ColorsPerVertex.  Actually it can be specified by colors per vertex or colors per face.  The code was changed that if the number of color index values match the number of faces it maps the colors by face and not be vertex.
      
      3) The "rotation" command in the "Transform" keyword is not supported.  This was not added but should be noted as a bug.
      63bf8548
  6. May 17, 2010
  7. May 13, 2010
  8. May 11, 2010
  9. May 07, 2010
Loading