├── README ├── docs └── DepthmapManualForDummies-v13.pdf ├── licence.txt └── src ├── depthmap ├── 3DView.cpp ├── 3DView.h ├── AgentAnalysisDlg.cpp ├── AgentAnalysisDlg.h ├── AttributeChooserDlg.cpp ├── AttributeChooserDlg.h ├── AttributeSummary.cpp ├── AttributeSummary.h ├── AxialAnalysisOptionsDlg.cpp ├── AxialAnalysisOptionsDlg.h ├── ChildFrm.cpp ├── ChildFrm.h ├── ColourScaleDlg.cpp ├── ColourScaleDlg.h ├── ColumnPropertiesDlg.h ├── ConvertShapesDlg.cpp ├── ConvertShapesDlg.h ├── Depthmap multiple merge.doc ├── Depthmap.aps ├── Depthmap.cpp ├── Depthmap.dsp ├── Depthmap.exp ├── Depthmap.h ├── Depthmap.rc ├── Depthmap.reg ├── Depthmap.sln ├── Depthmap.vcproj ├── DepthmapAlert.cpp ├── DepthmapAlert.h ├── DepthmapAtom.cpp ├── DepthmapAtom.h ├── DepthmapOptionsDlg.cpp ├── DepthmapOptionsDlg.h ├── DepthmapView.cpp ├── DepthmapView.h ├── EditConnectionsDlg.cpp ├── EditConnectionsDlg.h ├── FewestLineOptionsDlg.cpp ├── FewestLineOptionsDlg.h ├── FilePropertiesDlg.cpp ├── FilePropertiesDlg.h ├── FindLocDlg.cpp ├── FindLocDlg.h ├── GraphDoc.cpp ├── GraphDoc.h ├── GridDialog.cpp ├── GridDialog.h ├── HoverWnd.cpp ├── HoverWnd.h ├── HyperLink.cpp ├── HyperLink.h ├── InsertColumnDlg.cpp ├── InsertColumnDlg.h ├── IsovistPathDlg.cpp ├── IsovistPathDlg.h ├── LayerChooserDlg.cpp ├── LicenceDialog.cpp ├── LicenceDialog.h ├── MainFrm.cpp ├── MainFrm.h ├── MakeLayerDlg.cpp ├── MakeLayerDlg.h ├── MakeOptionsDlg.cpp ├── MakeOptionsDlg.h ├── NewLayerDlg.cpp ├── NewLayerDlg.h ├── PlotView.cpp ├── PlotView.h ├── PromptReplace.cpp ├── PromptReplace.h ├── PushDialog.cpp ├── PushDialog.h ├── RandomGridDialog.cpp ├── RandomGridDialog.h ├── RenameObjectDlg.cpp ├── RenameObjectDlg.h ├── RichTabEditCtrl.cpp ├── RichTabEditCtrl.h ├── SegmentAnalysisDlg.cpp ├── SegmentAnalysisDlg.h ├── SetAttrValueDlg.cpp ├── SetAttrValueDlg.h ├── SideBar.cpp ├── SideBar.h ├── SplashDlg.cpp ├── SplashDlg.h ├── StdAfx.cpp ├── StdAfx.h ├── TableEdit.cpp ├── TableEdit.h ├── TableView.cpp ├── TableView.h ├── TopoMetDlg.cpp ├── TopoMetDlg.h ├── ViewSelector.cpp ├── ViewSelector.h ├── ViewSelectorSub.cpp ├── ViewSelectorSub.h ├── WaitDialog.cpp ├── WaitDialog.h ├── buildinfo.h ├── columnpropertiesdlg.cpp ├── importedmodules.h ├── layerchooserdlg.h ├── optionsdlg.cpp ├── optionsdlg.h ├── res │ ├── CUR00001.CUR │ ├── CURSOR1.CUR │ ├── DepthMap.ico │ ├── Depthmap.rc2 │ ├── GraphDoc.ico │ ├── Release │ ├── SPLASH1.BMP │ ├── STOCHATA.BMP │ ├── Toolbar.bmp │ ├── ZOOM_IN1.CUR │ ├── accept1.bmp │ ├── agent_to.bmp │ ├── bitmap.bmp │ ├── bitmap1.bmp │ ├── bitmap2.bmp │ ├── bmp00001.bmp │ ├── bmp00002.bmp │ ├── bmp00003.bmp │ ├── bmp00004.bmp │ ├── bmp00005.bmp │ ├── bmp00006.bmp │ ├── bmp00007.bmp │ ├── bmp00008.bmp │ ├── bmp00009.bmp │ ├── cancelbo.bmp │ ├── casalogo.gif │ ├── column_e.bmp │ ├── columnhe.bmp │ ├── cur00002.cur │ ├── cur00003.cur │ ├── cur00004.cur │ ├── cur00005.cur │ ├── cur00006.cur │ ├── cur00007.cur │ ├── dephmapsplash2.bmp │ ├── dephmapsplash3.bmp │ ├── depthmapsplash_SSL3_Lg.bmp │ ├── depthmapsplash_SSL3_Lg.tif │ ├── fill_cur.cur │ ├── hand_cur.cur │ ├── ico00001.ico │ ├── ico00002.ico │ ├── icon.png │ ├── idr_grap.ico │ ├── idr_main.ico │ ├── linkcurs.cur │ ├── map_bar.bmp │ ├── map_bar_.bmp │ ├── sideicon.bmp │ ├── sidetree.bmp │ ├── stateico.bmp │ ├── tickboxu.bmp │ └── toolbar1.bmp └── resource.h ├── genlib ├── dxfp.cpp ├── genlib.cbp ├── genlib.dsp ├── genlib.vcproj ├── p2dpoly.cpp └── pafmath.cpp ├── include ├── generic │ ├── comm.h │ ├── dxfp.h │ ├── lgpl.txt │ ├── p2dpoly.h │ ├── pafmath.h │ ├── paftl.h │ ├── paftl_old.h │ ├── xmlparse.cpp │ └── xmlparse.h ├── idepthmap.h └── sala │ ├── attributes.h │ ├── axialmap.h │ ├── connector.h │ ├── datalayer.h │ ├── fileproperties.h │ ├── idepthmapx.h │ ├── mgraph.h │ ├── nagent.h │ ├── ngraph.h │ ├── pointdata.h │ ├── salaprogram.h │ ├── shapemap.h │ ├── spacepix.h │ └── vertex.h └── salalib ├── MapInfoData.cpp ├── MapInfoData.h ├── attributes.cpp ├── axialmap.cpp ├── connector.cpp ├── datalayer.cpp ├── gmlmap.cpp ├── gmlmap.h ├── idepthmap.cpp ├── idepthmapx.cpp ├── isovist.cpp ├── isovist.h ├── line-intersection-test.xls ├── mgraph.cpp ├── nagent.cpp ├── ngraph.cpp ├── ntfp.cpp ├── ntfp.h ├── pointdata.cpp ├── sala.dsp ├── sala.vcproj ├── salaprogram.cpp ├── salascript-tests.txt ├── shapemap.cpp ├── spacepix.cpp ├── sparksieve2.cpp ├── sparksieve2.h ├── tigerp.cpp ├── tigerp.h ├── topomet.cpp ├── topomet.h └── vertex.cpp /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/README -------------------------------------------------------------------------------- /docs/DepthmapManualForDummies-v13.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/docs/DepthmapManualForDummies-v13.pdf -------------------------------------------------------------------------------- /licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/licence.txt -------------------------------------------------------------------------------- /src/depthmap/3DView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/3DView.cpp -------------------------------------------------------------------------------- /src/depthmap/3DView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/3DView.h -------------------------------------------------------------------------------- /src/depthmap/AgentAnalysisDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AgentAnalysisDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/AgentAnalysisDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AgentAnalysisDlg.h -------------------------------------------------------------------------------- /src/depthmap/AttributeChooserDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AttributeChooserDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/AttributeChooserDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AttributeChooserDlg.h -------------------------------------------------------------------------------- /src/depthmap/AttributeSummary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AttributeSummary.cpp -------------------------------------------------------------------------------- /src/depthmap/AttributeSummary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AttributeSummary.h -------------------------------------------------------------------------------- /src/depthmap/AxialAnalysisOptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AxialAnalysisOptionsDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/AxialAnalysisOptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/AxialAnalysisOptionsDlg.h -------------------------------------------------------------------------------- /src/depthmap/ChildFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ChildFrm.cpp -------------------------------------------------------------------------------- /src/depthmap/ChildFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ChildFrm.h -------------------------------------------------------------------------------- /src/depthmap/ColourScaleDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ColourScaleDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/ColourScaleDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ColourScaleDlg.h -------------------------------------------------------------------------------- /src/depthmap/ColumnPropertiesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ColumnPropertiesDlg.h -------------------------------------------------------------------------------- /src/depthmap/ConvertShapesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ConvertShapesDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/ConvertShapesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ConvertShapesDlg.h -------------------------------------------------------------------------------- /src/depthmap/Depthmap multiple merge.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap multiple merge.doc -------------------------------------------------------------------------------- /src/depthmap/Depthmap.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.aps -------------------------------------------------------------------------------- /src/depthmap/Depthmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.cpp -------------------------------------------------------------------------------- /src/depthmap/Depthmap.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.dsp -------------------------------------------------------------------------------- /src/depthmap/Depthmap.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.exp -------------------------------------------------------------------------------- /src/depthmap/Depthmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.h -------------------------------------------------------------------------------- /src/depthmap/Depthmap.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.rc -------------------------------------------------------------------------------- /src/depthmap/Depthmap.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.reg -------------------------------------------------------------------------------- /src/depthmap/Depthmap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.sln -------------------------------------------------------------------------------- /src/depthmap/Depthmap.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/Depthmap.vcproj -------------------------------------------------------------------------------- /src/depthmap/DepthmapAlert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapAlert.cpp -------------------------------------------------------------------------------- /src/depthmap/DepthmapAlert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapAlert.h -------------------------------------------------------------------------------- /src/depthmap/DepthmapAtom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapAtom.cpp -------------------------------------------------------------------------------- /src/depthmap/DepthmapAtom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapAtom.h -------------------------------------------------------------------------------- /src/depthmap/DepthmapOptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapOptionsDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/DepthmapOptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapOptionsDlg.h -------------------------------------------------------------------------------- /src/depthmap/DepthmapView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapView.cpp -------------------------------------------------------------------------------- /src/depthmap/DepthmapView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/DepthmapView.h -------------------------------------------------------------------------------- /src/depthmap/EditConnectionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/EditConnectionsDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/EditConnectionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/EditConnectionsDlg.h -------------------------------------------------------------------------------- /src/depthmap/FewestLineOptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FewestLineOptionsDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/FewestLineOptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FewestLineOptionsDlg.h -------------------------------------------------------------------------------- /src/depthmap/FilePropertiesDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FilePropertiesDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/FilePropertiesDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FilePropertiesDlg.h -------------------------------------------------------------------------------- /src/depthmap/FindLocDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FindLocDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/FindLocDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/FindLocDlg.h -------------------------------------------------------------------------------- /src/depthmap/GraphDoc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/GraphDoc.cpp -------------------------------------------------------------------------------- /src/depthmap/GraphDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/GraphDoc.h -------------------------------------------------------------------------------- /src/depthmap/GridDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/GridDialog.cpp -------------------------------------------------------------------------------- /src/depthmap/GridDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/GridDialog.h -------------------------------------------------------------------------------- /src/depthmap/HoverWnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/HoverWnd.cpp -------------------------------------------------------------------------------- /src/depthmap/HoverWnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/HoverWnd.h -------------------------------------------------------------------------------- /src/depthmap/HyperLink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/HyperLink.cpp -------------------------------------------------------------------------------- /src/depthmap/HyperLink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/HyperLink.h -------------------------------------------------------------------------------- /src/depthmap/InsertColumnDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/InsertColumnDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/InsertColumnDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/InsertColumnDlg.h -------------------------------------------------------------------------------- /src/depthmap/IsovistPathDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/IsovistPathDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/IsovistPathDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/IsovistPathDlg.h -------------------------------------------------------------------------------- /src/depthmap/LayerChooserDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/LayerChooserDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/LicenceDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/LicenceDialog.cpp -------------------------------------------------------------------------------- /src/depthmap/LicenceDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/LicenceDialog.h -------------------------------------------------------------------------------- /src/depthmap/MainFrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MainFrm.cpp -------------------------------------------------------------------------------- /src/depthmap/MainFrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MainFrm.h -------------------------------------------------------------------------------- /src/depthmap/MakeLayerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MakeLayerDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/MakeLayerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MakeLayerDlg.h -------------------------------------------------------------------------------- /src/depthmap/MakeOptionsDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MakeOptionsDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/MakeOptionsDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/MakeOptionsDlg.h -------------------------------------------------------------------------------- /src/depthmap/NewLayerDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/NewLayerDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/NewLayerDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/NewLayerDlg.h -------------------------------------------------------------------------------- /src/depthmap/PlotView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PlotView.cpp -------------------------------------------------------------------------------- /src/depthmap/PlotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PlotView.h -------------------------------------------------------------------------------- /src/depthmap/PromptReplace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PromptReplace.cpp -------------------------------------------------------------------------------- /src/depthmap/PromptReplace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PromptReplace.h -------------------------------------------------------------------------------- /src/depthmap/PushDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PushDialog.cpp -------------------------------------------------------------------------------- /src/depthmap/PushDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/PushDialog.h -------------------------------------------------------------------------------- /src/depthmap/RandomGridDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RandomGridDialog.cpp -------------------------------------------------------------------------------- /src/depthmap/RandomGridDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RandomGridDialog.h -------------------------------------------------------------------------------- /src/depthmap/RenameObjectDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RenameObjectDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/RenameObjectDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RenameObjectDlg.h -------------------------------------------------------------------------------- /src/depthmap/RichTabEditCtrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RichTabEditCtrl.cpp -------------------------------------------------------------------------------- /src/depthmap/RichTabEditCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/RichTabEditCtrl.h -------------------------------------------------------------------------------- /src/depthmap/SegmentAnalysisDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SegmentAnalysisDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/SegmentAnalysisDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SegmentAnalysisDlg.h -------------------------------------------------------------------------------- /src/depthmap/SetAttrValueDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SetAttrValueDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/SetAttrValueDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SetAttrValueDlg.h -------------------------------------------------------------------------------- /src/depthmap/SideBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SideBar.cpp -------------------------------------------------------------------------------- /src/depthmap/SideBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SideBar.h -------------------------------------------------------------------------------- /src/depthmap/SplashDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SplashDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/SplashDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/SplashDlg.h -------------------------------------------------------------------------------- /src/depthmap/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/StdAfx.cpp -------------------------------------------------------------------------------- /src/depthmap/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/StdAfx.h -------------------------------------------------------------------------------- /src/depthmap/TableEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TableEdit.cpp -------------------------------------------------------------------------------- /src/depthmap/TableEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TableEdit.h -------------------------------------------------------------------------------- /src/depthmap/TableView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TableView.cpp -------------------------------------------------------------------------------- /src/depthmap/TableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TableView.h -------------------------------------------------------------------------------- /src/depthmap/TopoMetDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TopoMetDlg.cpp -------------------------------------------------------------------------------- /src/depthmap/TopoMetDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/TopoMetDlg.h -------------------------------------------------------------------------------- /src/depthmap/ViewSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ViewSelector.cpp -------------------------------------------------------------------------------- /src/depthmap/ViewSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ViewSelector.h -------------------------------------------------------------------------------- /src/depthmap/ViewSelectorSub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ViewSelectorSub.cpp -------------------------------------------------------------------------------- /src/depthmap/ViewSelectorSub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/ViewSelectorSub.h -------------------------------------------------------------------------------- /src/depthmap/WaitDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/WaitDialog.cpp -------------------------------------------------------------------------------- /src/depthmap/WaitDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/WaitDialog.h -------------------------------------------------------------------------------- /src/depthmap/buildinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/buildinfo.h -------------------------------------------------------------------------------- /src/depthmap/columnpropertiesdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/columnpropertiesdlg.cpp -------------------------------------------------------------------------------- /src/depthmap/importedmodules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/importedmodules.h -------------------------------------------------------------------------------- /src/depthmap/layerchooserdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/layerchooserdlg.h -------------------------------------------------------------------------------- /src/depthmap/optionsdlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/optionsdlg.cpp -------------------------------------------------------------------------------- /src/depthmap/optionsdlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/optionsdlg.h -------------------------------------------------------------------------------- /src/depthmap/res/CUR00001.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/CUR00001.CUR -------------------------------------------------------------------------------- /src/depthmap/res/CURSOR1.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/CURSOR1.CUR -------------------------------------------------------------------------------- /src/depthmap/res/DepthMap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/DepthMap.ico -------------------------------------------------------------------------------- /src/depthmap/res/Depthmap.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/Depthmap.rc2 -------------------------------------------------------------------------------- /src/depthmap/res/GraphDoc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/GraphDoc.ico -------------------------------------------------------------------------------- /src/depthmap/res/Release: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/depthmap/res/SPLASH1.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/SPLASH1.BMP -------------------------------------------------------------------------------- /src/depthmap/res/STOCHATA.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/STOCHATA.BMP -------------------------------------------------------------------------------- /src/depthmap/res/Toolbar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/Toolbar.bmp -------------------------------------------------------------------------------- /src/depthmap/res/ZOOM_IN1.CUR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/ZOOM_IN1.CUR -------------------------------------------------------------------------------- /src/depthmap/res/accept1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/accept1.bmp -------------------------------------------------------------------------------- /src/depthmap/res/agent_to.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/agent_to.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bitmap.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bitmap.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bitmap1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bitmap1.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bitmap2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bitmap2.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00001.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00001.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00002.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00002.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00003.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00004.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00005.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00005.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00006.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00006.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00007.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00007.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00008.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00008.bmp -------------------------------------------------------------------------------- /src/depthmap/res/bmp00009.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/bmp00009.bmp -------------------------------------------------------------------------------- /src/depthmap/res/cancelbo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cancelbo.bmp -------------------------------------------------------------------------------- /src/depthmap/res/casalogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/casalogo.gif -------------------------------------------------------------------------------- /src/depthmap/res/column_e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/column_e.bmp -------------------------------------------------------------------------------- /src/depthmap/res/columnhe.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/columnhe.bmp -------------------------------------------------------------------------------- /src/depthmap/res/cur00002.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00002.cur -------------------------------------------------------------------------------- /src/depthmap/res/cur00003.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00003.cur -------------------------------------------------------------------------------- /src/depthmap/res/cur00004.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00004.cur -------------------------------------------------------------------------------- /src/depthmap/res/cur00005.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00005.cur -------------------------------------------------------------------------------- /src/depthmap/res/cur00006.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00006.cur -------------------------------------------------------------------------------- /src/depthmap/res/cur00007.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/cur00007.cur -------------------------------------------------------------------------------- /src/depthmap/res/dephmapsplash2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/dephmapsplash2.bmp -------------------------------------------------------------------------------- /src/depthmap/res/dephmapsplash3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/dephmapsplash3.bmp -------------------------------------------------------------------------------- /src/depthmap/res/depthmapsplash_SSL3_Lg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/depthmapsplash_SSL3_Lg.bmp -------------------------------------------------------------------------------- /src/depthmap/res/depthmapsplash_SSL3_Lg.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/depthmapsplash_SSL3_Lg.tif -------------------------------------------------------------------------------- /src/depthmap/res/fill_cur.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/fill_cur.cur -------------------------------------------------------------------------------- /src/depthmap/res/hand_cur.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/hand_cur.cur -------------------------------------------------------------------------------- /src/depthmap/res/ico00001.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/ico00001.ico -------------------------------------------------------------------------------- /src/depthmap/res/ico00002.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/ico00002.ico -------------------------------------------------------------------------------- /src/depthmap/res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/icon.png -------------------------------------------------------------------------------- /src/depthmap/res/idr_grap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/idr_grap.ico -------------------------------------------------------------------------------- /src/depthmap/res/idr_main.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/idr_main.ico -------------------------------------------------------------------------------- /src/depthmap/res/linkcurs.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/linkcurs.cur -------------------------------------------------------------------------------- /src/depthmap/res/map_bar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/map_bar.bmp -------------------------------------------------------------------------------- /src/depthmap/res/map_bar_.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/map_bar_.bmp -------------------------------------------------------------------------------- /src/depthmap/res/sideicon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/sideicon.bmp -------------------------------------------------------------------------------- /src/depthmap/res/sidetree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/sidetree.bmp -------------------------------------------------------------------------------- /src/depthmap/res/stateico.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/stateico.bmp -------------------------------------------------------------------------------- /src/depthmap/res/tickboxu.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/tickboxu.bmp -------------------------------------------------------------------------------- /src/depthmap/res/toolbar1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/res/toolbar1.bmp -------------------------------------------------------------------------------- /src/depthmap/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/depthmap/resource.h -------------------------------------------------------------------------------- /src/genlib/dxfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/dxfp.cpp -------------------------------------------------------------------------------- /src/genlib/genlib.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/genlib.cbp -------------------------------------------------------------------------------- /src/genlib/genlib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/genlib.dsp -------------------------------------------------------------------------------- /src/genlib/genlib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/genlib.vcproj -------------------------------------------------------------------------------- /src/genlib/p2dpoly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/p2dpoly.cpp -------------------------------------------------------------------------------- /src/genlib/pafmath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/genlib/pafmath.cpp -------------------------------------------------------------------------------- /src/include/generic/comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/comm.h -------------------------------------------------------------------------------- /src/include/generic/dxfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/dxfp.h -------------------------------------------------------------------------------- /src/include/generic/lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/lgpl.txt -------------------------------------------------------------------------------- /src/include/generic/p2dpoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/p2dpoly.h -------------------------------------------------------------------------------- /src/include/generic/pafmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/pafmath.h -------------------------------------------------------------------------------- /src/include/generic/paftl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/paftl.h -------------------------------------------------------------------------------- /src/include/generic/paftl_old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/paftl_old.h -------------------------------------------------------------------------------- /src/include/generic/xmlparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/xmlparse.cpp -------------------------------------------------------------------------------- /src/include/generic/xmlparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/generic/xmlparse.h -------------------------------------------------------------------------------- /src/include/idepthmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/idepthmap.h -------------------------------------------------------------------------------- /src/include/sala/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/attributes.h -------------------------------------------------------------------------------- /src/include/sala/axialmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/axialmap.h -------------------------------------------------------------------------------- /src/include/sala/connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/connector.h -------------------------------------------------------------------------------- /src/include/sala/datalayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/datalayer.h -------------------------------------------------------------------------------- /src/include/sala/fileproperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/fileproperties.h -------------------------------------------------------------------------------- /src/include/sala/idepthmapx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/idepthmapx.h -------------------------------------------------------------------------------- /src/include/sala/mgraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/mgraph.h -------------------------------------------------------------------------------- /src/include/sala/nagent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/nagent.h -------------------------------------------------------------------------------- /src/include/sala/ngraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/ngraph.h -------------------------------------------------------------------------------- /src/include/sala/pointdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/pointdata.h -------------------------------------------------------------------------------- /src/include/sala/salaprogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/salaprogram.h -------------------------------------------------------------------------------- /src/include/sala/shapemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/shapemap.h -------------------------------------------------------------------------------- /src/include/sala/spacepix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/spacepix.h -------------------------------------------------------------------------------- /src/include/sala/vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/include/sala/vertex.h -------------------------------------------------------------------------------- /src/salalib/MapInfoData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/MapInfoData.cpp -------------------------------------------------------------------------------- /src/salalib/MapInfoData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/MapInfoData.h -------------------------------------------------------------------------------- /src/salalib/attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/attributes.cpp -------------------------------------------------------------------------------- /src/salalib/axialmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/axialmap.cpp -------------------------------------------------------------------------------- /src/salalib/connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/connector.cpp -------------------------------------------------------------------------------- /src/salalib/datalayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/datalayer.cpp -------------------------------------------------------------------------------- /src/salalib/gmlmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/gmlmap.cpp -------------------------------------------------------------------------------- /src/salalib/gmlmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/gmlmap.h -------------------------------------------------------------------------------- /src/salalib/idepthmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/idepthmap.cpp -------------------------------------------------------------------------------- /src/salalib/idepthmapx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/idepthmapx.cpp -------------------------------------------------------------------------------- /src/salalib/isovist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/isovist.cpp -------------------------------------------------------------------------------- /src/salalib/isovist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/isovist.h -------------------------------------------------------------------------------- /src/salalib/line-intersection-test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/line-intersection-test.xls -------------------------------------------------------------------------------- /src/salalib/mgraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/mgraph.cpp -------------------------------------------------------------------------------- /src/salalib/nagent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/nagent.cpp -------------------------------------------------------------------------------- /src/salalib/ngraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/ngraph.cpp -------------------------------------------------------------------------------- /src/salalib/ntfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/ntfp.cpp -------------------------------------------------------------------------------- /src/salalib/ntfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/ntfp.h -------------------------------------------------------------------------------- /src/salalib/pointdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/pointdata.cpp -------------------------------------------------------------------------------- /src/salalib/sala.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/sala.dsp -------------------------------------------------------------------------------- /src/salalib/sala.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/sala.vcproj -------------------------------------------------------------------------------- /src/salalib/salaprogram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/salaprogram.cpp -------------------------------------------------------------------------------- /src/salalib/salascript-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/salascript-tests.txt -------------------------------------------------------------------------------- /src/salalib/shapemap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/shapemap.cpp -------------------------------------------------------------------------------- /src/salalib/spacepix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/spacepix.cpp -------------------------------------------------------------------------------- /src/salalib/sparksieve2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/sparksieve2.cpp -------------------------------------------------------------------------------- /src/salalib/sparksieve2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/sparksieve2.h -------------------------------------------------------------------------------- /src/salalib/tigerp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/tigerp.cpp -------------------------------------------------------------------------------- /src/salalib/tigerp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/tigerp.h -------------------------------------------------------------------------------- /src/salalib/topomet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/topomet.cpp -------------------------------------------------------------------------------- /src/salalib/topomet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/topomet.h -------------------------------------------------------------------------------- /src/salalib/vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SpaceGroupUCL/Depthmap/HEAD/src/salalib/vertex.cpp --------------------------------------------------------------------------------