Changeset 4813


Ignore:
Timestamp:
Dec 2, 2014, 2:13:50 PM (10 years ago)
Author:
ldelgass
Message:

Revert a few changes that were made in the trunk

Location:
vtkvis/branches/1.8
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • vtkvis/branches/1.8/Makefile.in

    r4649 r4813  
    5050                -lvtkIOCore-$(VTK_VERSION) \
    5151                -lvtkIOLegacy-$(VTK_VERSION) \
    52                 -lvtkIOXML-$(VTK_VERSION) \
    5352                -lvtkFiltersExtraction-$(VTK_VERSION) \
    5453                -lvtkFiltersModeling-$(VTK_VERSION) \
     
    5857                -lvtkFiltersGeneral-$(VTK_VERSION) \
    5958                -lvtkFiltersCore-$(VTK_VERSION) \
    60                 -lvtkImagingMath-$(VTK_VERSION) \
    6159                -lvtkImagingHybrid-$(VTK_VERSION) \
    6260                -lvtkImagingCore-$(VTK_VERSION) \
  • vtkvis/branches/1.8/Renderer.cpp

    r4793 r4813  
    8080    _cameraMode(PERSPECTIVE),
    8181    _cameraAspect(ASPECT_NATIVE),
    82     _computeOnlyVisibleBounds(true),
     82    _computeOnlyVisibleBounds(false),
    8383    _imgCameraPlane(PLANE_XY),
    8484    _imgCameraOffset(0),
     
    42114211    }
    42124212    *plane = PLANE_XY;
    4213     *offset = bounds[4] + (bounds[5] - bounds[4])/2.0;
     4213    *offset = 0; //bounds[4] + (bounds[5] - bounds[4])/2.0;
    42144214    return false;
    42154215}
  • vtkvis/branches/1.8/configure

    r4595 r4813  
    13231323  --with-vtk-includes=DIR location of versioned VTK include dir
    13241324  --with-vtk-libs=DIR     VTK libraries are in DIR
    1325   --with-vtk=VERSION      Version of VTK required [default=6.1]
     1325  --with-vtk=VERSION      Version of VTK required [default=6.0]
    13261326  --with-statsdir=DIR     Write statistics in DIR
    13271327
     
    41454145
    41464146# We are assuming that we're using VTK 6.0
    4147 VTK_VERSION=6.1
     4147VTK_VERSION=6.0
    41484148VTK_LIB_DIR=${libdir}
    41494149VTK_INC_DIR=${incdir}
  • vtkvis/branches/1.8/configure.in

    r4595 r4813  
    2727    [vtk],
    2828    [AS_HELP_STRING([--with-vtk=VERSION],
    29         [Version of VTK required @<:@default=6.1@:>@])],
     29        [Version of VTK required @<:@default=6.0@:>@])],
    3030    [with_vtk=$withval],
    3131    [with_vtk=""])
     
    104104
    105105# We are assuming that we're using VTK 6.0
    106 VTK_VERSION=6.1
     106VTK_VERSION=6.0
    107107VTK_LIB_DIR=${libdir}
    108108VTK_INC_DIR=${incdir}
Note: See TracChangeset for help on using the changeset viewer.