From owner-svn-ports-all@FreeBSD.ORG Wed Jan 8 17:18:44 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4AF2F26A; Wed, 8 Jan 2014 17:18:44 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 354091E24; Wed, 8 Jan 2014 17:18:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s08HIixD076852; Wed, 8 Jan 2014 17:18:44 GMT (envelope-from gahr@svn.freebsd.org) Received: (from gahr@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s08HIgh9076839; Wed, 8 Jan 2014 17:18:42 GMT (envelope-from gahr@svn.freebsd.org) Message-Id: <201401081718.s08HIgh9076839@svn.freebsd.org> From: Pietro Cerutti Date: Wed, 8 Jan 2014 17:18:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r339158 - in head/math: . vtk6 vtk6/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 08 Jan 2014 17:18:44 -0000 Author: gahr Date: Wed Jan 8 17:18:41 2014 New Revision: 339158 URL: http://svnweb.freebsd.org/changeset/ports/339158 Log: - New port: math/vtk6 This is a port of the new VTK 6.x series. It is an early effort which should be used with care. Python support is present but commented out, pending some more thorough test. WWW: http://vtk.org/ Added: head/math/vtk6/ head/math/vtk6/Makefile (contents, props changed) head/math/vtk6/distinfo (contents, props changed) head/math/vtk6/files/ head/math/vtk6/files/patch-GUISupport-Qt_CMakeLists.txt (contents, props changed) head/math/vtk6/files/patch-GUISupport-Qt_PluginInstall.cmake.in (contents, props changed) head/math/vtk6/files/patch-IO-LSDyna-private_LSDynaFamily.cxx (contents, props changed) head/math/vtk6/files/patch-ThirdParty-verdict-vtkverdict_CMakeLists.txt (contents, props changed) head/math/vtk6/files/patch-Wrapping-Python_CMakeLists.txt (contents, props changed) head/math/vtk6/pkg-descr (contents, props changed) head/math/vtk6/pkg-plist (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Jan 8 16:48:25 2014 (r339157) +++ head/math/Makefile Wed Jan 8 17:18:41 2014 (r339158) @@ -651,6 +651,7 @@ SUBDIR += unuran SUBDIR += vtk5 SUBDIR += vtk5-data + SUBDIR += vtk6 SUBDIR += wcalc SUBDIR += wfmath SUBDIR += wingz Added: head/math/vtk6/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/Makefile Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,146 @@ +# Created by: gahr +# $FreeBSD$ + +PORTNAME= vtk +PORTVERSION= 6.0.0 +CATEGORIES= math graphics +MASTER_SITES= http://www.vtk.org/files/release/${VTK_SHORT_VER}/ +PKGNAMESUFFIX= 6 + +MAINTAINER= gahr@FreeBSD.org +COMMENT= The Visualization Toolkit + +LICENSE= BSD3CLAUSE + +# +# TODO +# * Python wrap +# * VTK Groups + +CONFLICTS= vtk-4* +USE_GL= gl +USE_LDCONFIG= ${PREFIX}/lib/vtk-${VTK_SHORT_VER} +USES= cmake:outsource +CXXFLAGS+= -I${LOCALBASE}/include + +VTK_SHORT_VER= ${PORTVERSION:R} +PLIST_SUB+= VER2=${VTK_SHORT_VER} + +WRKSRC= ${WRKDIR}/VTK${PORTVERSION} +DOCSDIR= ${PREFIX}/share/doc/vtk-${VTK_SHORT_VER} + +#VTK_GROUPS= Imaging MPI Qt Rendering StandAlone Views +VTK_GROUPS= MPI Qt +VTK_WRAPS= Java TclTk # Python +OPTIONS_GROUP= Groups Wrapping +OPTIONS_GROUP_Groups=${VTK_GROUPS} +OPTIONS_GROUP_Wrapping=${VTK_WRAPS} +OPTIONS_DEFINE= Designer DOCS +#OPTIONS_DEFAULT=MPI Qt Java Python TclTk Designer + +.for g in ${VTK_GROUPS} +$g_DESC= Build the $g group +.endfor +.for w in ${VTK_WRAPS} +$w_DESC= $w wrapping +.endfor + +Designer_DESC= Build the Qt Designer plugin + +CMAKE_ARGS+= -DVTK_INSTALL_LIBRARY_DIR=lib/vtk-${VTK_SHORT_VER} \ + -DVTK_INSTALL_ARCHIVE_DIR=lib/vtk-${VTK_SHORT_VER} \ + -DVTK_INSTALL_NO_DOCUMENTATION=ON \ + -DVTK_INSTALL_QT_DIR=/${QT_LIBDIR_REL}/plugins/designer \ + -DSTAGEDIR=${STAGEDIR} + +.include + +.for g in ${VTK_GROUPS} +. if ${PORT_OPTIONS:M${g}} +CMAKE_ARGS+= -DVTK_Group_${g}:BOOL=ON +. else +CMAKE_ARGS+= -DVTK_Group_${g}:BOOL=OFF +. endif +.endfor + +.if ${PORT_OPTIONS:MDOCS} +CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL=ON +.endif + +.if ${PORT_OPTIONS:MEXAMPLES} +CMAKE_ARGS+= -DBUILD_EXAMPLES:BOOL=ON +.endif + +.if ${PORT_OPTIONS:MMPI} +LIB_DEPENDS+= libmpi.so:${PORTSDIR}/net/openmpi +CMAKE_ARGS+= -DMPIEXEC=${LOCALBASE}/mpi/openmpi/bin/mpiexec +PLIST_SUB+= MPI="" +.else +PLIST_SUB+= MPI="@comment " +.endif + +.if ${PORT_OPTIONS:MQt} +USE_QT4= gui_build gui_run network_build network_run sql_build sql_run \ + moc_build uic_build qmake_build rcc_build opengl webkit_build \ + webkit_run +PLIST_SUB+= QT="" +.else +PLIST_SUB+= QT="@comment " +.endif + +.if ${PORT_OPTIONS:MDesigner} +USE_QT4= gui_build gui_run network_build network_run sql_build sql_run \ + moc_build uic_build designer_build designer_run qmake_build \ + rcc_build opengl webkit_build webkit_run +PLIST_SUB+= DESIGNER="" +CMAKE_ARGS+= -DQT_DESIGNER_PLUGIN:BOOL=ON +.else +PLIST_SUB+= DESIGNER="@comment " +CMAKE_ARGS+= -DQT_DESIGNER_PLUGIN:BOOL=OFF +.endif + +# Wrapping +.if ${PORT_OPTIONS:MJava} +CATEGORIES+= java +USE_JAVA= yes +CMAKE_ARGS+= -DVTK_WRAP_JAVA:BOOL=ON \ + -DJAVA_INCLUDE_PATH:PATH=${JAVA_HOME}/include \ + -DJAVA_AWT_LIBRARY:PATH=${JAVA_HOME}/jre/lib/${ARCH}/libjawt.so \ + -DJAVA_JVM_LIBRARY:PATH=${JAVA_HOME}/jre/lib/${ATCH}/libjava.so +PLIST_SUB+= JAVA="" +.else +CMAKE_ARGS+= -DVTK_WRAP_JAVA:BOOL=OFF \ + -DModule_vtkWrappingJava:BOOL=OFF +PLIST_SUB+= JAVA="@comment " +.endif + +.if ${PORT_OPTIONS:MPython} +USE_PYTHON= yes +CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=ON +PLIST_SUB+= PYTHON="" +.else +CMAKE_ARGS+= -DVTK_WRAP_PYTHON:BOOL=OFF +PLIST_SUB+= PYTHON="@comment " +.endif + +.if ${PORT_OPTIONS:MTclTk} +USES+= tk +CMAKE_ARGS+= -DVTK_WRAP_TCL:BOOL=ON \ + -DVTK_Group_Tk:BOOL=ON \ + -DTCL_INCLUDE_PATH:PATH=${TCL_INCLUDEDIR} \ + -DTK_INCLUDE_PATH:PATH=${TK_INCLUDEDIR} +PLIST_SUB+= TCLTK="" +.else +CMAKE_ARGS+= -DVTK_WRAP_TCL:BOOL=OFF \ + -DVTK_Group_Tk:BOOL=OFF +PLIST_SUB+= TCLTK="@comment " +.endif + +.if ${PORT_OPTIONS:MDOCS} +CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL=ON +BUILD_DEPENDS+= doxygen:${PORTSDIR}/devel/doxygen +.else +CMAKE_ARGS+= -DBUILD_DOCUMENTATION:BOOL=OFF +.endif + +.include Added: head/math/vtk6/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/distinfo Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,2 @@ +SHA256 (vtk-6.0.0.tar.gz) = 426df543cffeacf21154dddcd2a6efbd91a586570a07a0db4c426d3e0acd10e4 +SIZE (vtk-6.0.0.tar.gz) = 24170173 Added: head/math/vtk6/files/patch-GUISupport-Qt_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-GUISupport-Qt_CMakeLists.txt Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,31 @@ +--- GUISupport/Qt/CMakeLists.txt.orig 2013-06-12 21:47:10.000000000 +0200 ++++ GUISupport/Qt/CMakeLists.txt 2013-09-13 11:24:33.000000000 +0200 +@@ -89,7 +89,7 @@ + endif() + + # This build plugin logic should just get migrated into a module I think. +-if(BUILD_SHARED_LIBS) ++if(BUILD_SHARED_LIBS AND QT_DESIGNER_PLUGIN) + set(PluginLibSrcs Q4VTKWidgetPlugin.cxx) + + set(PluginMocHeaders Q4VTKWidgetPlugin.h) +@@ -100,16 +100,16 @@ + + # add QVTK plugin from sources + # stand-alone as it doesn't depend on QVTK library +- add_library(QVTKWidgetPlugin ++ add_library(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} + SHARED + ${PluginLibSrcs} + ${PluginMocSrcs} + ) + +- set_target_properties(QVTKWidgetPlugin PROPERTIES COMPILE_DEFINITIONS QT_NO_DEBUG) ++ set_target_properties(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} PROPERTIES COMPILE_DEFINITIONS QT_NO_DEBUG) + + # link with Qt libs +- target_link_libraries(QVTKWidgetPlugin ++ target_link_libraries(QVTKWidgetPlugin-${VTK_MAJOR_VERSION}.${VTK_MINOR_VERSION} + ${QT_QTGUI_LIBRARY} + ${QT_QTCORE_LIBRARY} + ) Added: head/math/vtk6/files/patch-GUISupport-Qt_PluginInstall.cmake.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-GUISupport-Qt_PluginInstall.cmake.in Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,11 @@ +--- GUISupport/Qt/PluginInstall.cmake.in.orig 2013-06-12 21:47:10.000000000 +0200 ++++ GUISupport/Qt/PluginInstall.cmake.in 2013-09-13 12:06:53.000000000 +0200 +@@ -2,7 +2,7 @@ + SET(VTK_LIB_DIR "@CMAKE_LIBRARY_OUTPUT_DIRECTORY@") + SET(VTK_INSTALL_QT_DIR "@VTK_INSTALL_QT_DIR@") + SET(VTK_INSTALL_QT_PLUGIN_DIR "@VTK_INSTALL_QT_PLUGIN_DIR@") +-SET(VTK_INSTALL_QT_PLUGIN_FILE "@CMAKE_SHARED_LIBRARY_PREFIX@QVTKWidgetPlugin@CMAKE_SHARED_LIBRARY_SUFFIX@") ++SET(VTK_INSTALL_QT_PLUGIN_FILE "@CMAKE_SHARED_LIBRARY_PREFIX@QVTKWidgetPlugin-@VTK_MAJOR_VERSION@.@VTK_MINOR_VERSION@@CMAKE_SHARED_LIBRARY_SUFFIX@") + SET(VTK_CONFIGURATIONS "@CMAKE_CONFIGURATION_TYPES@") + + IF(VTK_CONFIGURATIONS) Added: head/math/vtk6/files/patch-IO-LSDyna-private_LSDynaFamily.cxx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-IO-LSDyna-private_LSDynaFamily.cxx Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,11 @@ +--- IO/LSDyna/private/LSDynaFamily.cxx.orig 2013-06-25 14:13:58.000000000 +0200 ++++ IO/LSDyna/private/LSDynaFamily.cxx 2013-06-25 14:17:08.000000000 +0200 +@@ -33,7 +33,7 @@ + namespace + { + //Documentation on why the exemption +-#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE ++#define USE_STAT_64 VTK_SIZEOF_ID_TYPE==8 && !defined _DARWIN_FEATURE_64_BIT_INODE && !defined __FreeBSD__ + //OSX uses stat instead of stat64 + #if (USE_STAT_64) + //64bit Added: head/math/vtk6/files/patch-ThirdParty-verdict-vtkverdict_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-ThirdParty-verdict-vtkverdict_CMakeLists.txt Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,25 @@ +--- ThirdParty/verdict/vtkverdict/CMakeLists.txt.orig 2013-06-26 09:41:53.000000000 +0200 ++++ ThirdParty/verdict/vtkverdict/CMakeLists.txt 2013-06-26 09:42:13.000000000 +0200 +@@ -117,14 +117,14 @@ + # Installation stuff + # + IF(NOT verdict_INSTALL_NO_DEVELOPMENT) +- install(FILES +- README +- Verdict.htm +- Verdict.doc +- verdict_test.cpp +- DESTINATION ${verdict_INSTALL_DOC_DIR}/verdict/${verdict_VERSION}/ +- COMPONENT Development +- ) ++# install(FILES ++# README ++# Verdict.htm ++# Verdict.doc ++# verdict_test.cpp ++# DESTINATION ${verdict_INSTALL_DOC_DIR}/verdict/${verdict_VERSION}/ ++# COMPONENT Development ++# ) + + install( + FILES ${verdict_BINARY_DIR}/verdict.h Added: head/math/vtk6/files/patch-Wrapping-Python_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/files/patch-Wrapping-Python_CMakeLists.txt Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,11 @@ +--- Wrapping/Python/CMakeLists.txt.orig 2013-06-12 21:47:10.000000000 +0200 ++++ Wrapping/Python/CMakeLists.txt 2013-11-28 16:12:38.000000000 +0100 +@@ -290,7 +290,7 @@ + + # Create default python setup arguments if they are not set. + if(NOT DEFINED VTK_PYTHON_SETUP_ARGS) +- set(VTK_PYTHON_SETUP_ARGS "--prefix=\"${DOLLAR}{CMAKE_INSTALL_PREFIX}\"" ++ set(VTK_PYTHON_SETUP_ARGS "--prefix=\"${DOLLAR}{STAGEDIR}${DOLLAR}{PREFIX}\"" + CACHE STRING "Arguments passed to \"python setup.py install ...\" during installation.") + mark_as_advanced(VTK_PYTHON_SETUP_ARGS) + endif() Added: head/math/vtk6/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/pkg-descr Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,14 @@ +The Visualization Toolkit (VTK) is an open-source, freely available software +system for 3D computer graphics, image processing and visualization. VTK +consists of a C++ class library and several interpreted interface layers +including Tcl/Tk, Java, and Python. Kitware, whose team created and continues +to extend the toolkit, offers professional support and consulting services for +VTK. VTK supports a wide variety of visualization algorithms including: scalar, +vector, tensor, texture, and volumetric methods; and advanced modeling +techniques such as: implicit modeling, polygon reduction, mesh smoothing, +cutting, contouring, and Delaunay triangulation. VTK has an extensive +information visualization framework, has a suite of 3D interaction widgets, +supports parallel processing, and integrates with various databases on GUI +toolkits such as Qt and Tk. + +WWW: http://www.vtk.org Added: head/math/vtk6/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/vtk6/pkg-plist Wed Jan 8 17:18:41 2014 (r339158) @@ -0,0 +1,4044 @@ +bin/vtkEncodeString-6.0 +bin/vtkHashSource-6.0 +bin/vtkParseOGLExt-6.0 +bin/vtkProcessShader-6.0 +bin/vtkWrapHierarchy-6.0 +bin/vtkWrapTcl-6.0 +bin/vtkWrapTclInit-6.0 +bin/vtkmkg3states-6.0 +include/vtk-6.0/DICOMAppHelper.h +include/vtk-6.0/DICOMCMakeConfig.h +include/vtk-6.0/DICOMCallback.h +include/vtk-6.0/DICOMConfig.h +include/vtk-6.0/DICOMFile.h +include/vtk-6.0/DICOMParser.h +include/vtk-6.0/DICOMParserMap.h +include/vtk-6.0/DICOMTypes.h +include/vtk-6.0/DatabaseSchemaWith2Tables.h +include/vtk-6.0/JSONCPP/json/json-forwards.h +include/vtk-6.0/JSONCPP/json/json.h +include/vtk-6.0/LSDynaFamily.h +include/vtk-6.0/LSDynaMetaData.h +include/vtk-6.0/alglib/ap.h +include/vtk-6.0/alglib/apvt.h +include/vtk-6.0/alglib/bdsvd.h +include/vtk-6.0/alglib/bidiagonal.h +include/vtk-6.0/alglib/blas.h +include/vtk-6.0/alglib/lq.h +include/vtk-6.0/alglib/qr.h +include/vtk-6.0/alglib/reflections.h +include/vtk-6.0/alglib/rotations.h +include/vtk-6.0/alglib/svd.h +include/vtk-6.0/vtk3DSImporter.h +include/vtk-6.0/vtk3DWidget.h +include/vtk-6.0/vtkABI.h +include/vtk-6.0/vtkAMRBaseParticlesReader.h +include/vtk-6.0/vtkAMRBaseReader.h +include/vtk-6.0/vtkAMRBox.h +include/vtk-6.0/vtkAMRCutPlane.h +include/vtk-6.0/vtkAMRDataInternals.h +include/vtk-6.0/vtkAMRDataSetCache.h +include/vtk-6.0/vtkAMREnzoParticlesReader.h +include/vtk-6.0/vtkAMREnzoReader.h +include/vtk-6.0/vtkAMREnzoReaderInternal.h +include/vtk-6.0/vtkAMRFlashParticlesReader.h +include/vtk-6.0/vtkAMRFlashReader.h +include/vtk-6.0/vtkAMRFlashReaderInternal.h +include/vtk-6.0/vtkAMRGaussianPulseSource.h +include/vtk-6.0/vtkAMRInformation.h +include/vtk-6.0/vtkAMRInterpolatedVelocityField.h +include/vtk-6.0/vtkAMRResampleFilter.h +include/vtk-6.0/vtkAMRSliceFilter.h +include/vtk-6.0/vtkAMRToMultiBlockFilter.h +include/vtk-6.0/vtkAMRUtilities.h +include/vtk-6.0/vtkAMRVolumeMapper.h +include/vtk-6.0/vtkASCIITextCodec.h +include/vtk-6.0/vtkAVSucdReader.h +include/vtk-6.0/vtkAbstractArray.h +include/vtk-6.0/vtkAbstractCellLocator.h +include/vtk-6.0/vtkAbstractContextBufferId.h +include/vtk-6.0/vtkAbstractContextItem.h +include/vtk-6.0/vtkAbstractElectronicData.h +include/vtk-6.0/vtkAbstractGridConnectivity.h +include/vtk-6.0/vtkAbstractImageInterpolator.h +include/vtk-6.0/vtkAbstractInterpolatedVelocityField.h +include/vtk-6.0/vtkAbstractMapper.h +include/vtk-6.0/vtkAbstractMapper3D.h +include/vtk-6.0/vtkAbstractParticleWriter.h +include/vtk-6.0/vtkAbstractPicker.h +include/vtk-6.0/vtkAbstractPointLocator.h +include/vtk-6.0/vtkAbstractPolygonalHandleRepresentation3D.h +include/vtk-6.0/vtkAbstractPropPicker.h +include/vtk-6.0/vtkAbstractTransform.h +include/vtk-6.0/vtkAbstractVolumeMapper.h +include/vtk-6.0/vtkAbstractWidget.h +include/vtk-6.0/vtkActor.h +include/vtk-6.0/vtkActor2D.h +include/vtk-6.0/vtkActor2DCollection.h +include/vtk-6.0/vtkActorCollection.h +include/vtk-6.0/vtkAddMembershipArray.h +include/vtk-6.0/vtkAdjacencyMatrixToEdgeTable.h +include/vtk-6.0/vtkAdjacentVertexIterator.h +include/vtk-6.0/vtkAffineRepresentation.h +include/vtk-6.0/vtkAffineRepresentation2D.h +include/vtk-6.0/vtkAffineWidget.h +include/vtk-6.0/vtkAlgorithm.h +include/vtk-6.0/vtkAlgorithmOutput.h +include/vtk-6.0/vtkAmoebaMinimizer.h +include/vtk-6.0/vtkAngleRepresentation.h +include/vtk-6.0/vtkAngleRepresentation2D.h +include/vtk-6.0/vtkAngleRepresentation3D.h +include/vtk-6.0/vtkAngleWidget.h +include/vtk-6.0/vtkAnimationCue.h +include/vtk-6.0/vtkAnimationScene.h +include/vtk-6.0/vtkAnnotatedCubeActor.h +include/vtk-6.0/vtkAnnotation.h +include/vtk-6.0/vtkAnnotationLayers.h +include/vtk-6.0/vtkAnnotationLayersAlgorithm.h +include/vtk-6.0/vtkAnnotationLink.h +include/vtk-6.0/vtkAppendCompositeDataLeaves.h +include/vtk-6.0/vtkAppendFilter.h +include/vtk-6.0/vtkAppendPoints.h +include/vtk-6.0/vtkAppendPolyData.h +include/vtk-6.0/vtkAppendSelection.h +include/vtk-6.0/vtkApplyColors.h +include/vtk-6.0/vtkApplyIcons.h +include/vtk-6.0/vtkApproximatingSubdivisionFilter.h +include/vtk-6.0/vtkArcParallelEdgeStrategy.h +include/vtk-6.0/vtkArcPlotter.h +include/vtk-6.0/vtkArcSource.h +include/vtk-6.0/vtkAreaContourSpectrumFilter.h +include/vtk-6.0/vtkAreaLayout.h +include/vtk-6.0/vtkAreaLayoutStrategy.h +include/vtk-6.0/vtkAreaPicker.h +include/vtk-6.0/vtkArray.h +include/vtk-6.0/vtkArrayCalculator.h +include/vtk-6.0/vtkArrayCoordinates.h +include/vtk-6.0/vtkArrayData.h +include/vtk-6.0/vtkArrayDataAlgorithm.h +include/vtk-6.0/vtkArrayDataReader.h +include/vtk-6.0/vtkArrayDataWriter.h +include/vtk-6.0/vtkArrayExtents.h +include/vtk-6.0/vtkArrayExtentsList.h +include/vtk-6.0/vtkArrayInterpolate.h +include/vtk-6.0/vtkArrayInterpolate.txx +include/vtk-6.0/vtkArrayIterator.h +include/vtk-6.0/vtkArrayIteratorIncludes.h +include/vtk-6.0/vtkArrayIteratorTemplate.h +include/vtk-6.0/vtkArrayIteratorTemplate.txx +include/vtk-6.0/vtkArrayIteratorTemplateImplicit.txx +include/vtk-6.0/vtkArrayNorm.h +include/vtk-6.0/vtkArrayPrint.h +include/vtk-6.0/vtkArrayPrint.txx +include/vtk-6.0/vtkArrayRange.h +include/vtk-6.0/vtkArrayReader.h +include/vtk-6.0/vtkArraySort.h +include/vtk-6.0/vtkArrayToTable.h +include/vtk-6.0/vtkArrayWeights.h +include/vtk-6.0/vtkArrayWriter.h +include/vtk-6.0/vtkArrowSource.h +include/vtk-6.0/vtkAssembly.h +include/vtk-6.0/vtkAssemblyNode.h +include/vtk-6.0/vtkAssemblyPath.h +include/vtk-6.0/vtkAssemblyPaths.h +include/vtk-6.0/vtkAssignAttribute.h +include/vtk-6.0/vtkAssignCoordinates.h +include/vtk-6.0/vtkAssignCoordinatesLayoutStrategy.h +include/vtk-6.0/vtkAtom.h +include/vtk-6.0/vtkAttributeClustering2DLayoutStrategy.h +include/vtk-6.0/vtkAttributeDataToFieldDataFilter.h +include/vtk-6.0/vtkAttributesErrorMetric.h +include/vtk-6.0/vtkAutoCorrelativeStatistics.h +include/vtk-6.0/vtkAutoInit.h +include/vtk-6.0/vtkAxes.h +include/vtk-6.0/vtkAxesActor.h +include/vtk-6.0/vtkAxesTransformRepresentation.h +include/vtk-6.0/vtkAxesTransformWidget.h +include/vtk-6.0/vtkAxis.h +include/vtk-6.0/vtkAxisActor.h +include/vtk-6.0/vtkAxisActor2D.h +include/vtk-6.0/vtkAxisExtended.h +include/vtk-6.0/vtkAxisFollower.h +include/vtk-6.0/vtkBMPReader.h +include/vtk-6.0/vtkBMPWriter.h +include/vtk-6.0/vtkBSPCuts.h +include/vtk-6.0/vtkBSPIntersections.h +include/vtk-6.0/vtkBSplineTransform.h +include/vtk-6.0/vtkBYUReader.h +include/vtk-6.0/vtkBYUWriter.h +include/vtk-6.0/vtkBalloonRepresentation.h +include/vtk-6.0/vtkBalloonWidget.h +include/vtk-6.0/vtkBandedPolyDataContourFilter.h +include/vtk-6.0/vtkBarChartActor.h +include/vtk-6.0/vtkBase64InputStream.h +include/vtk-6.0/vtkBase64OutputStream.h +include/vtk-6.0/vtkBase64Utilities.h +include/vtk-6.0/vtkBezierContourLineInterpolator.h +include/vtk-6.0/vtkBiDimensionalRepresentation.h +include/vtk-6.0/vtkBiDimensionalRepresentation2D.h +include/vtk-6.0/vtkBiDimensionalWidget.h +include/vtk-6.0/vtkBiQuadraticQuad.h +include/vtk-6.0/vtkBiQuadraticQuadraticHexahedron.h +include/vtk-6.0/vtkBiQuadraticQuadraticWedge.h +include/vtk-6.0/vtkBiQuadraticTriangle.h +include/vtk-6.0/vtkBiomTableReader.h +include/vtk-6.0/vtkBitArray.h +include/vtk-6.0/vtkBitArrayIterator.h +include/vtk-6.0/vtkBivariateLinearTableThreshold.h +include/vtk-6.0/vtkBlankStructuredGrid.h +include/vtk-6.0/vtkBlankStructuredGridWithImage.h +include/vtk-6.0/vtkBlockIdScalars.h +include/vtk-6.0/vtkBlockItem.h +include/vtk-6.0/vtkBlueObeliskData.h +include/vtk-6.0/vtkBlueObeliskDataParser.h +include/vtk-6.0/vtkBond.h +include/vtk-6.0/vtkBooleanOperationPolyDataFilter.h +include/vtk-6.0/vtkBooleanTexture.h +include/vtk-6.0/vtkBorderRepresentation.h +include/vtk-6.0/vtkBorderWidget.h +include/vtk-6.0/vtkBoundedPlanePointPlacer.h +include/vtk-6.0/vtkBoundingBox.h +include/vtk-6.0/vtkBox.h +include/vtk-6.0/vtkBoxClipDataSet.h +include/vtk-6.0/vtkBoxLayoutStrategy.h +include/vtk-6.0/vtkBoxMuellerRandomSequence.h +include/vtk-6.0/vtkBoxRepresentation.h +include/vtk-6.0/vtkBoxWidget.h +include/vtk-6.0/vtkBoxWidget2.h +include/vtk-6.0/vtkBreakPoint.h +include/vtk-6.0/vtkBridgeAttribute.h +include/vtk-6.0/vtkBridgeCell.h +include/vtk-6.0/vtkBridgeCellIterator.h +include/vtk-6.0/vtkBridgeCellIteratorOnCellBoundaries.h +include/vtk-6.0/vtkBridgeCellIteratorOnCellList.h +include/vtk-6.0/vtkBridgeCellIteratorOnDataSet.h +include/vtk-6.0/vtkBridgeCellIteratorOne.h +include/vtk-6.0/vtkBridgeCellIteratorStrategy.h +include/vtk-6.0/vtkBridgeDataSet.h +include/vtk-6.0/vtkBridgeExport.h +include/vtk-6.0/vtkBridgePointIterator.h +include/vtk-6.0/vtkBridgePointIteratorOnCell.h +include/vtk-6.0/vtkBridgePointIteratorOnDataSet.h +include/vtk-6.0/vtkBridgePointIteratorOne.h +include/vtk-6.0/vtkBrokenLineWidget.h +include/vtk-6.0/vtkBrownianPoints.h +include/vtk-6.0/vtkBrush.h +include/vtk-6.0/vtkButterflySubdivisionFilter.h +include/vtk-6.0/vtkButtonRepresentation.h +include/vtk-6.0/vtkButtonSource.h +include/vtk-6.0/vtkButtonWidget.h +include/vtk-6.0/vtkByteSwap.h +include/vtk-6.0/vtkCMLMoleculeReader.h +include/vtk-6.0/vtkCachedStreamingDemandDrivenPipeline.h +include/vtk-6.0/vtkCachingInterpolatedVelocityField.h +include/vtk-6.0/vtkCallbackCommand.h +include/vtk-6.0/vtkCamera.h +include/vtk-6.0/vtkCameraActor.h +include/vtk-6.0/vtkCameraInterpolator.h +include/vtk-6.0/vtkCameraPass.h +include/vtk-6.0/vtkCameraRepresentation.h +include/vtk-6.0/vtkCameraWidget.h +include/vtk-6.0/vtkCaptionActor2D.h +include/vtk-6.0/vtkCaptionRepresentation.h +include/vtk-6.0/vtkCaptionWidget.h +include/vtk-6.0/vtkCardinalSpline.h +include/vtk-6.0/vtkCastToConcrete.h +include/vtk-6.0/vtkCell.h +include/vtk-6.0/vtkCell3D.h +include/vtk-6.0/vtkCellArray.h +include/vtk-6.0/vtkCellCenterDepthSort.h +include/vtk-6.0/vtkCellCenters.h +include/vtk-6.0/vtkCellCentersPointPlacer.h +include/vtk-6.0/vtkCellData.h +include/vtk-6.0/vtkCellDataToPointData.h +include/vtk-6.0/vtkCellDerivatives.h +include/vtk-6.0/vtkCellDistanceSelector.h +include/vtk-6.0/vtkCellLinks.h +include/vtk-6.0/vtkCellLocator.h +include/vtk-6.0/vtkCellLocatorInterpolatedVelocityField.h +include/vtk-6.0/vtkCellPicker.h +include/vtk-6.0/vtkCellQuality.h +include/vtk-6.0/vtkCellTreeLocator.h +include/vtk-6.0/vtkCellType.h +include/vtk-6.0/vtkCellTypes.h +include/vtk-6.0/vtkCenterOfMass.h +include/vtk-6.0/vtkCenteredSliderRepresentation.h +include/vtk-6.0/vtkCenteredSliderWidget.h +include/vtk-6.0/vtkChacoGraphReader.h +include/vtk-6.0/vtkChacoReader.h +include/vtk-6.0/vtkCharArray.h +include/vtk-6.0/vtkChart.h +include/vtk-6.0/vtkChartHistogram2D.h +include/vtk-6.0/vtkChartLegend.h +include/vtk-6.0/vtkChartMatrix.h +include/vtk-6.0/vtkChartParallelCoordinates.h +include/vtk-6.0/vtkChartPie.h +include/vtk-6.0/vtkChartXY.h +include/vtk-6.0/vtkChartXYZ.h +include/vtk-6.0/vtkChartsCoreModule.h +include/vtk-6.0/vtkCheckerboardRepresentation.h +include/vtk-6.0/vtkCheckerboardWidget.h +include/vtk-6.0/vtkChooserPainter.h +include/vtk-6.0/vtkCirclePackFrontChainLayoutStrategy.h +include/vtk-6.0/vtkCirclePackLayout.h +include/vtk-6.0/vtkCirclePackLayoutStrategy.h +include/vtk-6.0/vtkCirclePackToPolyData.h +include/vtk-6.0/vtkCircularLayoutStrategy.h +include/vtk-6.0/vtkCleanPolyData.h +include/vtk-6.0/vtkClearZPass.h +include/vtk-6.0/vtkClientSocket.h +include/vtk-6.0/vtkClipClosedSurface.h +include/vtk-6.0/vtkClipConvexPolyData.h +include/vtk-6.0/vtkClipDataSet.h +include/vtk-6.0/vtkClipHyperOctree.h +include/vtk-6.0/vtkClipPlanesPainter.h +include/vtk-6.0/vtkClipPolyData.h +include/vtk-6.0/vtkClipVolume.h +include/vtk-6.0/vtkClosedSurfacePointPlacer.h +include/vtk-6.0/vtkClustering2DLayoutStrategy.h +include/vtk-6.0/vtkCoincidentPoints.h +include/vtk-6.0/vtkCoincidentTopologyResolutionPainter.h +include/vtk-6.0/vtkCollapseGraph.h +include/vtk-6.0/vtkCollapseVerticesByArray.h +include/vtk-6.0/vtkCollectGraph.h +include/vtk-6.0/vtkCollectPolyData.h +include/vtk-6.0/vtkCollectTable.h +include/vtk-6.0/vtkCollection.h +include/vtk-6.0/vtkCollectionIterator.h +include/vtk-6.0/vtkColor.h +include/vtk-6.0/vtkColorLegend.h +include/vtk-6.0/vtkColorMaterialHelper.h +include/vtk-6.0/vtkColorSeries.h +include/vtk-6.0/vtkColorTransferControlPointsItem.h +include/vtk-6.0/vtkColorTransferFunction.h +include/vtk-6.0/vtkColorTransferFunctionItem.h +include/vtk-6.0/vtkCommand.h +include/vtk-6.0/vtkCommonColorModule.h +include/vtk-6.0/vtkCommonComputationalGeometryModule.h +include/vtk-6.0/vtkCommonCoreModule.h +include/vtk-6.0/vtkCommonDataModelModule.h +include/vtk-6.0/vtkCommonExecutionModelModule.h +include/vtk-6.0/vtkCommonInformationKeyManager.h +include/vtk-6.0/vtkCommonMathModule.h +include/vtk-6.0/vtkCommonMiscModule.h +include/vtk-6.0/vtkCommonSystemModule.h +include/vtk-6.0/vtkCommonTransformsModule.h +include/vtk-6.0/vtkCommunicator.h +include/vtk-6.0/vtkCommunity2DLayoutStrategy.h +include/vtk-6.0/vtkCompassRepresentation.h +include/vtk-6.0/vtkCompassWidget.h +include/vtk-6.0/vtkCompositeControlPointsItem.h +include/vtk-6.0/vtkCompositeCutter.h +include/vtk-6.0/vtkCompositeDataDisplayAttributes.h +include/vtk-6.0/vtkCompositeDataGeometryFilter.h +include/vtk-6.0/vtkCompositeDataIterator.h +include/vtk-6.0/vtkCompositeDataPipeline.h +include/vtk-6.0/vtkCompositeDataProbeFilter.h +include/vtk-6.0/vtkCompositeDataReader.h +include/vtk-6.0/vtkCompositeDataSet.h +include/vtk-6.0/vtkCompositeDataSetAlgorithm.h +include/vtk-6.0/vtkCompositeDataWriter.h +include/vtk-6.0/vtkCompositeInterpolatedVelocityField.h +include/vtk-6.0/vtkCompositePainter.h +include/vtk-6.0/vtkCompositePolyDataMapper.h +include/vtk-6.0/vtkCompositePolyDataMapper2.h +include/vtk-6.0/vtkCompositeTransferFunctionItem.h +include/vtk-6.0/vtkComputeHistogram2DOutliers.h +include/vtk-6.0/vtkComputingResources.h +include/vtk-6.0/vtkConditionVariable.h +include/vtk-6.0/vtkCone.h +include/vtk-6.0/vtkConeLayoutStrategy.h +include/vtk-6.0/vtkConeSource.h +include/vtk-6.0/vtkConfigure.h +include/vtk-6.0/vtkConnectivityFilter.h +include/vtk-6.0/vtkConstrained2DLayoutStrategy.h +include/vtk-6.0/vtkConstrainedPointHandleRepresentation.h +include/vtk-6.0/vtkContext2D.h +include/vtk-6.0/vtkContext3D.h +include/vtk-6.0/vtkContextActor.h +include/vtk-6.0/vtkContextBufferId.h +include/vtk-6.0/vtkContextClip.h +include/vtk-6.0/vtkContextDevice2D.h +include/vtk-6.0/vtkContextDevice3D.h +include/vtk-6.0/vtkContextInteractorStyle.h +include/vtk-6.0/vtkContextItem.h +include/vtk-6.0/vtkContextKeyEvent.h +include/vtk-6.0/vtkContextMapper2D.h +include/vtk-6.0/vtkContextMouseEvent.h +include/vtk-6.0/vtkContextPolygon.h +include/vtk-6.0/vtkContextScene.h +include/vtk-6.0/vtkContextTransform.h +include/vtk-6.0/vtkContextView.h +include/vtk-6.0/vtkContingencyStatistics.h +include/vtk-6.0/vtkContinuousValueWidget.h +include/vtk-6.0/vtkContinuousValueWidgetRepresentation.h +include/vtk-6.0/vtkContourFilter.h +include/vtk-6.0/vtkContourGrid.h +include/vtk-6.0/vtkContourHelper.h +include/vtk-6.0/vtkContourLineInterpolator.h +include/vtk-6.0/vtkContourRepresentation.h +include/vtk-6.0/vtkContourTriangulator.h +include/vtk-6.0/vtkContourValues.h +include/vtk-6.0/vtkContourWidget.h +include/vtk-6.0/vtkControlPointsItem.h +include/vtk-6.0/vtkConvertSelection.h +include/vtk-6.0/vtkConvertSelectionDomain.h +include/vtk-6.0/vtkConvexPointSet.h +include/vtk-6.0/vtkCoordinate.h +include/vtk-6.0/vtkCornerAnnotation.h +include/vtk-6.0/vtkCorrelativeStatistics.h +include/vtk-6.0/vtkCosmicTreeLayoutStrategy.h +include/vtk-6.0/vtkCriticalSection.h +include/vtk-6.0/vtkCubeAxesActor.h +include/vtk-6.0/vtkCubeAxesActor2D.h +include/vtk-6.0/vtkCubeSource.h +include/vtk-6.0/vtkCubicLine.h +include/vtk-6.0/vtkCuller.h +include/vtk-6.0/vtkCullerCollection.h +include/vtk-6.0/vtkCursor2D.h +include/vtk-6.0/vtkCursor3D.h +include/vtk-6.0/vtkCurvatures.h +include/vtk-6.0/vtkCutMaterial.h +include/vtk-6.0/vtkCutter.h +include/vtk-6.0/vtkCylinder.h +include/vtk-6.0/vtkCylinderSource.h +include/vtk-6.0/vtkCylindricalTransform.h +include/vtk-6.0/vtkDEMReader.h +include/vtk-6.0/vtkDICOMImageReader.h +include/vtk-6.0/vtkDIMACSGraphReader.h +include/vtk-6.0/vtkDIMACSGraphWriter.h +include/vtk-6.0/vtkDSPFilterDefinition.h +include/vtk-6.0/vtkDSPFilterGroup.h +include/vtk-6.0/vtkDashedStreamLine.h +include/vtk-6.0/vtkDataArray.h +include/vtk-6.0/vtkDataArrayCollection.h +include/vtk-6.0/vtkDataArrayCollectionIterator.h +include/vtk-6.0/vtkDataArrayDispatcher.h +include/vtk-6.0/vtkDataArraySelection.h +include/vtk-6.0/vtkDataArrayTemplate.h +include/vtk-6.0/vtkDataArrayTemplate.txx +include/vtk-6.0/vtkDataArrayTemplateImplicit.txx +include/vtk-6.0/vtkDataCompressor.h +include/vtk-6.0/vtkDataObject.h +include/vtk-6.0/vtkDataObjectAlgorithm.h +include/vtk-6.0/vtkDataObjectCollection.h +include/vtk-6.0/vtkDataObjectGenerator.h +include/vtk-6.0/vtkDataObjectReader.h +include/vtk-6.0/vtkDataObjectToDataSetFilter.h +include/vtk-6.0/vtkDataObjectToTable.h +include/vtk-6.0/vtkDataObjectTree.h +include/vtk-6.0/vtkDataObjectTreeIterator.h +include/vtk-6.0/vtkDataObjectTypes.h +include/vtk-6.0/vtkDataObjectWriter.h +include/vtk-6.0/vtkDataReader.h +include/vtk-6.0/vtkDataRepresentation.h +include/vtk-6.0/vtkDataSet.h +include/vtk-6.0/vtkDataSetAlgorithm.h +include/vtk-6.0/vtkDataSetAttributes.h +include/vtk-6.0/vtkDataSetCollection.h +include/vtk-6.0/vtkDataSetEdgeSubdivisionCriterion.h +include/vtk-6.0/vtkDataSetGhostGenerator.h +include/vtk-6.0/vtkDataSetGradient.h +include/vtk-6.0/vtkDataSetGradientPrecompute.h +include/vtk-6.0/vtkDataSetMapper.h +include/vtk-6.0/vtkDataSetReader.h +include/vtk-6.0/vtkDataSetSurfaceFilter.h +include/vtk-6.0/vtkDataSetToDataObjectFilter.h +include/vtk-6.0/vtkDataSetTriangleFilter.h +include/vtk-6.0/vtkDataSetWriter.h +include/vtk-6.0/vtkDataTransferHelper.h +include/vtk-6.0/vtkDataWriter.h +include/vtk-6.0/vtkDatabaseToTableReader.h +include/vtk-6.0/vtkDebugLeaks.h +include/vtk-6.0/vtkDebugLeaksManager.h +include/vtk-6.0/vtkDecimatePolylineFilter.h +include/vtk-6.0/vtkDecimatePro.h +include/vtk-6.0/vtkDefaultPainter.h +include/vtk-6.0/vtkDefaultPass.h +include/vtk-6.0/vtkDeformPointSet.h +include/vtk-6.0/vtkDelaunay2D.h +include/vtk-6.0/vtkDelaunay3D.h +include/vtk-6.0/vtkDelimitedTextReader.h +include/vtk-6.0/vtkDelimitedTextWriter.h +include/vtk-6.0/vtkDemandDrivenPipeline.h +include/vtk-6.0/vtkDenseArray.h +include/vtk-6.0/vtkDenseArray.txx +include/vtk-6.0/vtkDensifyPolyData.h +include/vtk-6.0/vtkDepthPeelingPass.h +include/vtk-6.0/vtkDepthSortPolyData.h +include/vtk-6.0/vtkDescriptiveStatistics.h +include/vtk-6.0/vtkDiagonalMatrixSource.h +include/vtk-6.0/vtkDicer.h +include/vtk-6.0/vtkDijkstraGraphGeodesicPath.h +include/vtk-6.0/vtkDijkstraImageContourLineInterpolator.h +include/vtk-6.0/vtkDijkstraImageGeodesicPath.h +include/vtk-6.0/vtkDirectedAcyclicGraph.h +include/vtk-6.0/vtkDirectedGraph.h +include/vtk-6.0/vtkDirectedGraphAlgorithm.h +include/vtk-6.0/vtkDirectionEncoder.h +include/vtk-6.0/vtkDirectory.h +include/vtk-6.0/vtkDiscreteMarchingCubes.h +include/vtk-6.0/vtkDiscretizableColorTransferFunction.h +include/vtk-6.0/vtkDiskSource.h +include/vtk-6.0/vtkDispatcher.h +include/vtk-6.0/vtkDispatcher_Private.h +include/vtk-6.0/vtkDisplayListPainter.h +include/vtk-6.0/vtkDistancePolyDataFilter.h +include/vtk-6.0/vtkDistanceRepresentation.h +include/vtk-6.0/vtkDistanceRepresentation2D.h +include/vtk-6.0/vtkDistanceRepresentation3D.h +include/vtk-6.0/vtkDistanceToCamera.h +include/vtk-6.0/vtkDistanceWidget.h +include/vtk-6.0/vtkDistributedGraphHelper.h +include/vtk-6.0/vtkDomainsChemistryModule.h +include/vtk-6.0/vtkDoubleArray.h +include/vtk-6.0/vtkDoubleDispatcher.h +include/vtk-6.0/vtkDummyCommunicator.h +include/vtk-6.0/vtkDummyController.h +include/vtk-6.0/vtkDummyGPUInfoList.h +include/vtk-6.0/vtkDuplicatePolyData.h +include/vtk-6.0/vtkDynamic2DLabelMapper.h +include/vtk-6.0/vtkDynamicLoader.h +include/vtk-6.0/vtkEarthSource.h +include/vtk-6.0/vtkEdgeCenters.h +include/vtk-6.0/vtkEdgeLayout.h +include/vtk-6.0/vtkEdgeLayoutStrategy.h +include/vtk-6.0/vtkEdgeListIterator.h +include/vtk-6.0/vtkEdgePoints.h +include/vtk-6.0/vtkEdgeSubdivisionCriterion.h +include/vtk-6.0/vtkEdgeTable.h +include/vtk-6.0/vtkElevationFilter.h +include/vtk-6.0/vtkEllipsoidTensorProbeRepresentation.h +include/vtk-6.0/vtkEllipticalButtonSource.h +include/vtk-6.0/vtkEmptyCell.h +include/vtk-6.0/vtkEmptyRepresentation.h +include/vtk-6.0/vtkEnSight6BinaryReader.h +include/vtk-6.0/vtkEnSight6Reader.h +include/vtk-6.0/vtkEnSightGoldBinaryReader.h +include/vtk-6.0/vtkEnSightGoldReader.h +include/vtk-6.0/vtkEnSightMasterServerReader.h +include/vtk-6.0/vtkEnSightReader.h +include/vtk-6.0/vtkEnSightWriter.h +include/vtk-6.0/vtkEncodedGradientEstimator.h +include/vtk-6.0/vtkEncodedGradientShader.h +include/vtk-6.0/vtkErrorCode.h +include/vtk-6.0/vtkEvent.h +include/vtk-6.0/vtkEventForwarderCommand.h +include/vtk-6.0/vtkExecutionScheduler.h +include/vtk-6.0/vtkExecutionSchedulerManager.h +include/vtk-6.0/vtkExecutionTimer.h +include/vtk-6.0/vtkExecutive.h +include/vtk-6.0/vtkExecutiveCollection.h +include/vtk-6.0/vtkExodusIICache.h +include/vtk-6.0/vtkExodusIIReader.h +include/vtk-6.0/vtkExodusIIReaderParser.h +include/vtk-6.0/vtkExodusIIReaderVariableCheck.h +include/vtk-6.0/vtkExodusIIWriter.h +include/vtk-6.0/vtkExodusModel.h +include/vtk-6.0/vtkExpandSelectedGraph.h +include/vtk-6.0/vtkExplicitCell.h +include/vtk-6.0/vtkExporter.h +include/vtk-6.0/vtkExtentRCBPartitioner.h +include/vtk-6.0/vtkExtentSplitter.h +include/vtk-6.0/vtkExtentTranslator.h +include/vtk-6.0/vtkExtractArray.h +include/vtk-6.0/vtkExtractArraysOverTime.h +include/vtk-6.0/vtkExtractBlock.h +include/vtk-6.0/vtkExtractCTHPart.h +include/vtk-6.0/vtkExtractCells.h +include/vtk-6.0/vtkExtractDataOverTime.h +include/vtk-6.0/vtkExtractDataSets.h +include/vtk-6.0/vtkExtractEdges.h +include/vtk-6.0/vtkExtractGeometry.h +include/vtk-6.0/vtkExtractGrid.h +include/vtk-6.0/vtkExtractHistogram2D.h +include/vtk-6.0/vtkExtractLevel.h +include/vtk-6.0/vtkExtractPiece.h +include/vtk-6.0/vtkExtractPolyDataGeometry.h +include/vtk-6.0/vtkExtractPolyDataPiece.h +include/vtk-6.0/vtkExtractRectilinearGrid.h +include/vtk-6.0/vtkExtractSelectedBlock.h +include/vtk-6.0/vtkExtractSelectedFrustum.h +include/vtk-6.0/vtkExtractSelectedGraph.h +include/vtk-6.0/vtkExtractSelectedIds.h +include/vtk-6.0/vtkExtractSelectedLocations.h +include/vtk-6.0/vtkExtractSelectedPolyDataIds.h +include/vtk-6.0/vtkExtractSelectedRows.h +include/vtk-6.0/vtkExtractSelectedThresholds.h +include/vtk-6.0/vtkExtractSelectedTree.h +include/vtk-6.0/vtkExtractSelection.h +include/vtk-6.0/vtkExtractSelectionBase.h +include/vtk-6.0/vtkExtractTemporalFieldData.h +include/vtk-6.0/vtkExtractTensorComponents.h +include/vtk-6.0/vtkExtractUnstructuredGrid.h +include/vtk-6.0/vtkExtractUnstructuredGridPiece.h +include/vtk-6.0/vtkExtractUserDefinedPiece.h +include/vtk-6.0/vtkExtractVOI.h +include/vtk-6.0/vtkExtractVectorComponents.h +include/vtk-6.0/vtkFLUENTReader.h +include/vtk-6.0/vtkFacetReader.h +include/vtk-6.0/vtkFacetWriter.h +include/vtk-6.0/vtkFast2DLayoutStrategy.h +include/vtk-6.0/vtkFastNumericConversion.h +include/vtk-6.0/vtkFastSplatter.h +include/vtk-6.0/vtkFeatureEdges.h +include/vtk-6.0/vtkFieldData.h +include/vtk-6.0/vtkFieldDataSerializer.h +include/vtk-6.0/vtkFieldDataToAttributeDataFilter.h +include/vtk-6.0/vtkFileOutputWindow.h +include/vtk-6.0/vtkFillHolesFilter.h +include/vtk-6.0/vtkFilteringInformationKeyManager.h +include/vtk-6.0/vtkFiltersAMRModule.h +include/vtk-6.0/vtkFiltersCoreModule.h +include/vtk-6.0/vtkFiltersExtractionModule.h +include/vtk-6.0/vtkFiltersFlowPathsModule.h +include/vtk-6.0/vtkFiltersGeneralModule.h +include/vtk-6.0/vtkFiltersGenericModule.h +include/vtk-6.0/vtkFiltersGeometryModule.h +include/vtk-6.0/vtkFiltersHybridModule.h +include/vtk-6.0/vtkFiltersHyperTreeModule.h +include/vtk-6.0/vtkFiltersImagingModule.h +include/vtk-6.0/vtkFiltersModelingModule.h +include/vtk-6.0/vtkFiltersParallelImagingModule.h +include/vtk-6.0/vtkFiltersParallelModule.h +include/vtk-6.0/vtkFiltersProgrammableModule.h +include/vtk-6.0/vtkFiltersSelectionModule.h +include/vtk-6.0/vtkFiltersSourcesModule.h +include/vtk-6.0/vtkFiltersStatisticsModule.h +include/vtk-6.0/vtkFiltersTextureModule.h +include/vtk-6.0/vtkFiltersVerdictModule.h +include/vtk-6.0/vtkFiniteDifferenceGradientEstimator.h +include/vtk-6.0/vtkFixedPointRayCastImage.h +include/vtk-6.0/vtkFixedPointVolumeRayCastCompositeGOHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastCompositeGOShadeHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastCompositeHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastCompositeShadeHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastMIPHelper.h +include/vtk-6.0/vtkFixedPointVolumeRayCastMapper.h +include/vtk-6.0/vtkFixedSizeHandleRepresentation3D.h +include/vtk-6.0/vtkFixedWidthTextReader.h +include/vtk-6.0/vtkFloatArray.h +include/vtk-6.0/vtkFloatingPointExceptions.h +include/vtk-6.0/vtkFocalPlaneContourRepresentation.h +include/vtk-6.0/vtkFocalPlanePointPlacer.h +include/vtk-6.0/vtkFollower.h +include/vtk-6.0/vtkForceDirectedLayoutStrategy.h +include/vtk-6.0/vtkFrameBufferObject.h +include/vtk-6.0/vtkFreeTypeLabelRenderStrategy.h +include/vtk-6.0/vtkFreeTypeStringToImage.h +include/vtk-6.0/vtkFreeTypeTools.h +include/vtk-6.0/vtkFreeTypeUtilities.h +include/vtk-6.0/vtkFrustumCoverageCuller.h +include/vtk-6.0/vtkFrustumSource.h +include/vtk-6.0/vtkFunctionParser.h +include/vtk-6.0/vtkFunctionSet.h +include/vtk-6.0/vtkGAMBITReader.h +include/vtk-6.0/vtkGESignaReader.h +include/vtk-6.0/vtkGL2PSContextDevice2D.h +include/vtk-6.0/vtkGL2PSExporter.h +include/vtk-6.0/vtkGL2PSUtilities.h +include/vtk-6.0/vtkGLSLShader.h +include/vtk-6.0/vtkGLSLShaderDeviceAdapter.h +include/vtk-6.0/vtkGLSLShaderDeviceAdapter2.h +include/vtk-6.0/vtkGLSLShaderProgram.h +include/vtk-6.0/vtkGPUInfo.h +include/vtk-6.0/vtkGPUInfoList.h +include/vtk-6.0/vtkGPUInfoListArray.h +include/vtk-6.0/vtkGPUVolumeRayCastMapper.h +include/vtk-6.0/vtkGarbageCollector.h +include/vtk-6.0/vtkGarbageCollectorManager.h +include/vtk-6.0/vtkGaussianBlurPass.h +include/vtk-6.0/vtkGaussianCubeReader.h +include/vtk-6.0/vtkGaussianRandomSequence.h +include/vtk-6.0/vtkGaussianSplatter.h +include/vtk-6.0/vtkGeneralTransform.h +include/vtk-6.0/vtkGenerateIndexArray.h +include/vtk-6.0/vtkGenericAdaptorCell.h +include/vtk-6.0/vtkGenericAttribute.h +include/vtk-6.0/vtkGenericAttributeCollection.h +include/vtk-6.0/vtkGenericCell.h +include/vtk-6.0/vtkGenericCellIterator.h +include/vtk-6.0/vtkGenericCellTessellator.h +include/vtk-6.0/vtkGenericClip.h +include/vtk-6.0/vtkGenericContourFilter.h +include/vtk-6.0/vtkGenericCutter.h +include/vtk-6.0/vtkGenericDataObjectReader.h +include/vtk-6.0/vtkGenericDataObjectWriter.h +include/vtk-6.0/vtkGenericDataSet.h +include/vtk-6.0/vtkGenericDataSetTessellator.h +include/vtk-6.0/vtkGenericEdgeTable.h +include/vtk-6.0/vtkGenericEnSightReader.h +include/vtk-6.0/vtkGenericGeometryFilter.h +include/vtk-6.0/vtkGenericGlyph3DFilter.h +include/vtk-6.0/vtkGenericInterpolatedVelocityField.h +include/vtk-6.0/vtkGenericMovieWriter.h +include/vtk-6.0/vtkGenericOpenGLRenderWindow.h +include/vtk-6.0/vtkGenericOutlineFilter.h +include/vtk-6.0/vtkGenericPointIterator.h +include/vtk-6.0/vtkGenericProbeFilter.h +include/vtk-6.0/vtkGenericRenderWindowInteractor.h +include/vtk-6.0/vtkGenericStreamTracer.h +include/vtk-6.0/vtkGenericSubdivisionErrorMetric.h +include/vtk-6.0/vtkGenericVertexAttributeMapping.h +include/vtk-6.0/vtkGeoAdaptiveArcs.h +include/vtk-6.0/vtkGeoAlignedImageRepresentation.h +include/vtk-6.0/vtkGeoAlignedImageSource.h +include/vtk-6.0/vtkGeoArcs.h +include/vtk-6.0/vtkGeoAssignCoordinates.h +include/vtk-6.0/vtkGeoCamera.h +include/vtk-6.0/vtkGeoEdgeStrategy.h +include/vtk-6.0/vtkGeoFileImageSource.h +include/vtk-6.0/vtkGeoFileTerrainSource.h +include/vtk-6.0/vtkGeoGlobeSource.h +include/vtk-6.0/vtkGeoGraticule.h +include/vtk-6.0/vtkGeoImageNode.h +include/vtk-6.0/vtkGeoInteractorStyle.h +include/vtk-6.0/vtkGeoMath.h +include/vtk-6.0/vtkGeoProjection.h +include/vtk-6.0/vtkGeoProjectionSource.h +include/vtk-6.0/vtkGeoRandomGraphSource.h +include/vtk-6.0/vtkGeoSampleArcs.h +include/vtk-6.0/vtkGeoSource.h +include/vtk-6.0/vtkGeoSphereTransform.h +include/vtk-6.0/vtkGeoTerrain.h +include/vtk-6.0/vtkGeoTerrain2D.h +include/vtk-6.0/vtkGeoTerrainNode.h +include/vtk-6.0/vtkGeoTransform.h +include/vtk-6.0/vtkGeoTreeNode.h +include/vtk-6.0/vtkGeoTreeNodeCache.h +include/vtk-6.0/vtkGeoView.h +include/vtk-6.0/vtkGeoView2D.h +include/vtk-6.0/vtkGeodesicPath.h *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***