Skip to content

Commit b440ccf

Browse files
committed
Start GSL
1 parent b212a53 commit b440ccf

File tree

7 files changed

+789
-1
lines changed

7 files changed

+789
-1
lines changed

src/Modules/Legacy/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ ADD_SUBDIRECTORY(Inverse)
3636
#ADD_SUBDIRECTORY(Converters)
3737
ADD_SUBDIRECTORY(Bundle)
3838
ADD_SUBDIRECTORY(Matlab)
39+
ADD_SUBDIRECTORY(Visualization)

src/Modules/Legacy/Math/ComputeSVD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
*/
2828

2929
#ifndef MODULES_LEGACY_MATH_COMPUTESVD_H_
30-
#define MODLES_LEGACY_MATH_COMPUTESVD_H_ 1
30+
#define MODULES_LEGACY_MATH_COMPUTESVD_H_ 1
3131

3232
#include <Dataflow/Network/Module.h>
3333
#include <Modules/Legacy/Math/share.h>
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
#
2+
# For more information, please see: http://software.sci.utah.edu
3+
#
4+
# The MIT License
5+
#
6+
# Copyright (c) 2009 Scientific Computing and Imaging Institute,
7+
# University of Utah.
8+
#
9+
#
10+
# Permission is hereby granted, free of charge, to any person obtaining a
11+
# copy of this software and associated documentation files (the "Software"),
12+
# to deal in the Software without restriction, including without limitation
13+
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
14+
# and/or sell copies of the Software, and to permit persons to whom the
15+
# Software is furnished to do so, subject to the following conditions:
16+
#
17+
# The above copyright notice and this permission notice shall be included
18+
# in all copies or substantial portions of the Software.
19+
#
20+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21+
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23+
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
25+
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26+
# DEALINGS IN THE SOFTWARE.
27+
#
28+
29+
# CMakeLists.txt for Dataflow/Modules/Visualization
30+
31+
SET(Modules_Legacy_Visualization_SRCS
32+
#CreateScaleBar.cc
33+
#CreateLightForViewer.cc
34+
#ChooseColorMap.cc
35+
#CreateAndEditColorMap.cc
36+
#CreateAndEditColorMap2D.cc
37+
#CreateViewerAxes.cc
38+
#CreateViewerClockIcon.cc
39+
#CreateStandardColorMaps.cc
40+
#ExtractIsosurface.cc
41+
#ConvertNrrdsToTexture.cc
42+
#ConvertFieldsToTexture.cc
43+
#RescaleColorMap.cc
44+
#ShowColorMap.cc
45+
#ShowFieldGlyphs.cc
46+
#ShowLinePath.cc
47+
#ShowMatrix.cc
48+
#ShowMeshBoundingBox.cc
49+
#ShowPointPath.cc
50+
GenerateStreamLines.cc
51+
#GenerateStreamLinesWithPlacementHeuristic.cc
52+
#ShowTextureSlices.cc
53+
#ShowTextureSurface.cc
54+
#ShowTextureVolume.cc
55+
#ShowString.cc
56+
)
57+
58+
SET(Modules_Legacy_Visualization_HEADERS
59+
GenerateStreamLines.h
60+
share.h
61+
)
62+
63+
SCIRUN_ADD_LIBRARY(Modules_Legacy_Visualization
64+
${Modules_Legacy_Visualization_SRCS}
65+
${Modules_Legacy_Visualization_HEADERS})
66+
67+
TARGET_LINK_LIBRARIES(Modules_Legacy_Visualization
68+
Dataflow_Network
69+
#Dataflow_Widgets
70+
#Dataflow_GuiInterface
71+
#Dataflow_TkExtensions
72+
#Core_Algorithms_Legacy_Fields
73+
Algorithms_Base
74+
#Core_Algorithms_Visualization
75+
#Core_Algorithms_Geometry
76+
#Core_Algorithms_Converter
77+
Core_Basis
78+
Core_Datatypes
79+
#Core_Datatypes_Legacy_Bundle
80+
#Core_Exceptions_Legacy
81+
#Core_Geom
82+
Core_Geometry_Primitives
83+
#Core_GeomInterface
84+
#Core_ImportExport
85+
Core_Math
86+
#Core_Parser
87+
#Core_Persistent
88+
#Core_Thread
89+
Core_Util_Legacy
90+
#${SCI_TEEM_LIBRARY}
91+
)
92+
93+
IF(BUILD_SHARED_LIBS)
94+
ADD_DEFINITIONS(-DBUILD_Modules_Legacy_Visualization)
95+
ENDIF(BUILD_SHARED_LIBS)

0 commit comments

Comments
 (0)