├── .gitattributes ├── .gitignore ├── Addin.zip ├── Dashboard Date.rfa (1) ├── Helpers ├── HelpPrint.cs ├── HelperMe.csproj └── Properties │ └── AssemblyInfo.cs ├── README.md ├── ReviTab ├── ApplicationRibbon.cs ├── Button Tags │ ├── PlaceTags - Copy.cs │ ├── PlaceTags.cs │ ├── SaveTags.cs │ ├── SelectAllTagsInViewport.cs │ └── TagElementsInViewport.cs ├── Buttons Documentation │ ├── AddActiveViewToSheet.cs │ ├── AddLegendToSheets.cs │ ├── AddMultipleViewsToSheet.cs │ ├── AlignViews.cs │ ├── CreateSheetByNumber.cs │ ├── CreateViewSet.cs │ ├── DeleteLineStyles.cs │ ├── DeleteTextFont.cs │ ├── DuplicateSheets.cs │ ├── ExportToSVG.cs │ ├── ExtendGrids.cs │ ├── ExtractDetail.cs │ ├── LineStyles.cs │ ├── MatchSectionViewCrop.cs │ ├── MoveViewportToSheet.cs │ ├── Parameterizer.cs │ ├── RemoveFirstRevision.cs │ ├── RhinoImport.cs │ ├── SelectByParameter.cs │ ├── SetTitleblockScale.cs │ ├── TextFonts.cs │ └── UpRevSheet.cs ├── Buttons Excel │ ├── ExportViewTemplates.cs │ ├── RevisionCloudsSummary.cs │ ├── SelectFromExcel.cs │ ├── SelectedDataParametersToExcel.cs │ ├── SelectedDataToExcel.cs │ ├── UpdateFromExcel.cs │ ├── UpdateViewportsFromExcel.cs │ └── ViewportsToExcel.cs ├── Buttons Framings and Walls │ ├── AddTagsApplyUndo.cs │ ├── BeamByTypeName.cs │ ├── ChangeBeamLocation.cs │ ├── ColumnSplitter.cs │ ├── EditBeamJoin.cs │ ├── JoinMultiple.cs │ ├── LockOpenings.cs │ ├── MoveBeamEnd.cs │ ├── SetBeamZOffset.cs │ ├── SwitchJoin.cs │ ├── UnjoinAll.cs │ ├── UnjoinElements.cs │ ├── VoidByFace.cs │ ├── VoidByLine.cs │ ├── VoidByRefPlane.cs │ └── WallSplitter.cs ├── Buttons Geometry │ ├── CreateExtrusion.cs │ ├── DrawModelCurve.cs │ ├── DrawObjectAxis.cs │ ├── ProjectLines.cs │ ├── RhinoSpline.cs │ ├── SATtoDirectShape.cs │ └── WallTopographyIntersections.cs ├── Buttons Management │ ├── PushToAirtable.cs │ ├── PushToDB.cs │ └── UpdateModelStatus.cs ├── Buttons Tools │ ├── AlignColumns.cs │ ├── CopyLinkedElements.cs │ ├── CopyViewFilters.cs │ ├── CreateNurbsModelCurve.cs │ ├── CreateSectionColumns.cs │ ├── CreateSections.cs │ ├── DisableWarnings.cs │ ├── ExportJson.cs │ ├── FilterSelectionBeams.cs │ ├── FilterSelectionColumns.cs │ ├── FilterSelectionDimensions.cs │ ├── FilterSelectionGrids.cs │ ├── FilterSelectionLines.cs │ ├── FilterSelectionTags.cs │ ├── FilterSelectionText.cs │ ├── FilterSelectionWalls.cs │ ├── FlipSections.cs │ ├── IntersectPlaneMesh.cs │ ├── IsolateCategories.cs │ ├── OpenLastCreatedView.cs │ ├── OverrideColors.cs │ ├── OverrideDimensions.cs │ ├── PrintSelected.cs │ ├── PropagateGridExtents.cs │ ├── RevCloudsOLD.cs │ ├── RevCloudsSelected.cs │ ├── RhinoMesh.cs │ ├── SelectAllText.cs │ ├── SelectTitleblocks.cs │ ├── ShowSelected.cs │ ├── SwapGridBubble.cs │ └── SwapLevelsBubble.cs ├── Buttons Zero State │ ├── AddPDFcustomProperties.cs │ ├── ClaritySetup.cs │ ├── ColorTab.cs │ ├── Howl.cs │ ├── PanicButton.cs │ ├── PrintInBackground.cs │ ├── PurgeFamily.cs │ ├── SuppressWarnings.cs │ ├── Unsuscribe.cs │ ├── UpdateSuscribe.cs │ └── VersionInfo.cs ├── Commands │ ├── AddMetadataHelpers.cs │ ├── ButtonPickPoint.cs │ ├── ElementFilters.cs │ ├── GeomUtils.cs │ ├── GlobalObjects.cs │ ├── Helpers.cs │ ├── PlaceTags │ │ ├── AcceptChanges.cs │ │ ├── HelpersPlaceTags.cs │ │ ├── PlaceTags.cs │ │ └── UndoChanges.cs │ ├── Press.cs │ ├── Rhynamo.cs │ └── VoidByLineHelpers.cs ├── Dashboard Family.rfa ├── Forms │ ├── CmdWindowHandleForm.Designer.cs │ ├── CmdWindowHandleForm.cs │ ├── CmdWindowHandleForm.resx │ ├── FormAddActiveView.cs │ ├── FormAddActiveView.designer.cs │ ├── FormAddActiveView.resx │ ├── FormAddMetadata.cs │ ├── FormAddMetadata.designer.cs │ ├── FormAddMetadata.resx │ ├── FormAddMultipleViews.Designer.cs │ ├── FormAddMultipleViews.cs │ ├── FormAddMultipleViews.resx │ ├── FormAddOpening.cs │ ├── FormAddOpening.designer.cs │ ├── FormAddOpening.resx │ ├── FormCopyLinkedElements.xaml │ ├── FormCopyLinkedElements.xaml.cs │ ├── FormCopyViewFilter.xaml │ ├── FormCopyViewFilter.xaml.cs │ ├── FormCreateSections.cs │ ├── FormCreateSections.designer.cs │ ├── FormCreateSections.resx │ ├── FormCreateSheet.Designer.cs │ ├── FormCreateSheet.cs │ ├── FormCreateSheet.resx │ ├── FormCreateViewSet.Designer.cs │ ├── FormCreateViewSet.cs │ ├── FormCreateViewSet.resx │ ├── FormDuplicateSheets.xaml │ ├── FormDuplicateSheets.xaml.cs │ ├── FormHowl.cs │ ├── FormHowl.designer.cs │ ├── FormHowl.resx │ ├── FormInputCombobox.xaml │ ├── FormInputCombobox.xaml.cs │ ├── FormJoin.cs │ ├── FormJoin.designer.cs │ ├── FormJoin.resx │ ├── FormNeumorphism.xaml │ ├── FormNeumorphism.xaml.cs │ ├── FormOpenFile.cs │ ├── FormOpenFile.designer.cs │ ├── FormOpenFile.resx │ ├── FormPickFromDropDown.xaml │ ├── FormPickFromDropDown.xaml.cs │ ├── FormPickSheets.cs │ ├── FormPickSheets.designer.cs │ ├── FormPickSheets.resx │ ├── FormPlaceTags.cs │ ├── FormPlaceTags.designer.cs │ ├── FormPlaceTags.resx │ ├── FormSelectionDropDown.Designer.cs │ ├── FormSelectionDropDown.cs │ ├── FormTwoTextBoxes.cs │ ├── FormTwoTextBoxes.designer.cs │ └── FormTwoTextBoxes.resx ├── Properties │ └── AssemblyInfo.cs ├── Resource1.Designer.cs ├── Resource1.resx ├── Resources │ ├── Icon.ico │ ├── Icon1.ico │ ├── LeannPopUp.resx │ ├── addBeamOpening.png │ ├── addBeamOpeningSmall.png │ ├── addMultipleViews.png │ ├── addRev.png │ ├── addSheetByNumber.png │ ├── addView.png │ ├── airtable.png │ ├── alignColumns.png │ ├── alignViewports.png │ ├── arrowUp.png │ ├── arrowUpSmall.png │ ├── axis.png │ ├── backgroundPrint.png │ ├── bground.png │ ├── changebeamlocation.png │ ├── claSetup.png │ ├── cloudSelection.png │ ├── cloudSelectionCopy.png │ ├── columnSection.png │ ├── columnSplit.png │ ├── copyGridExtents.png │ ├── copyLinked.png │ ├── copyViewFilter.png │ ├── createViewSet.png │ ├── deleteRev.png │ ├── dimensionOverride.png │ ├── directShape.png │ ├── drawAxis.png │ ├── duplicateSheets.png │ ├── duplicateView.png │ ├── elementType.png │ ├── excel.png │ ├── extractDetail.png │ ├── flatten.png │ ├── flipSection.png │ ├── ghowlicon.png │ ├── ghowlicon16x16.png │ ├── info.png │ ├── info16x16.png │ ├── isoCategory.png │ ├── joinEnd.png │ ├── legend.png │ ├── line.png │ ├── lineSection.png │ ├── lineSmall.png │ ├── lock.png │ ├── manage.png │ ├── metadata.ico │ ├── metadata.png │ ├── moveViewports.png │ ├── movement-arrows.png │ ├── multipleJoin.png │ ├── multipleSections.png │ ├── overrideColors.png │ ├── panButton.png │ ├── panButton_small.png │ ├── panic-button.png │ ├── projectLine.png │ ├── projectLines.png │ ├── rainbow.png │ ├── revCloud.png │ ├── revCloudsmall.png │ ├── rhinoImport.png │ ├── ruler.png │ ├── rulerSmall.png │ ├── selectBeams.png │ ├── selectColumn.png │ ├── selectDimensions.png │ ├── selectFilter.png │ ├── selectGrid.png │ ├── selectLines.png │ ├── selectTags.png │ ├── selectText.png │ ├── show.png │ ├── showLatest.png │ ├── showSelected.png │ ├── splitWalls.png │ ├── swapGrids.png │ ├── swapLevels.png │ ├── switchJoin.png │ ├── tag.png │ ├── tagSmall.png │ ├── tblock.png │ ├── topoIntersect.png │ ├── totalLength.png │ ├── unjoinAll.png │ ├── unjoinMultiple.png │ ├── wiping.png │ └── wipingSmall.png ├── ReviTab.addin ├── ReviTab.csproj ├── RevitElementDrawingServer.cs ├── Util.cs ├── Web_Peno_C.rfa ├── Web_Peno_R.rfa ├── app.config ├── gHowl │ ├── Formatter.cs │ ├── SendPattern.cs │ └── UdpSenderComponent.cs └── packages.config ├── RevitSamples.sln ├── images ├── ChangeBeamLocation.gif ├── Dashboard Date.rfa ├── Dashboard Family.rfa ├── Dashboard.rvt ├── EditBeamJoins.gif ├── FilterSelection.gif ├── Flatten.gif ├── JoinMultiple.gif ├── MoveBeamEnd.gif ├── Reset.png ├── Select.png ├── Uprev.png ├── UprevSmall.png ├── VoidByFace.mp4 ├── addBeamOpening.png ├── addBeamOpeningSmall.png ├── addRev.png ├── airtable.png ├── arrowUp.png ├── arrowUpSmall.png ├── copyLinkedElements.gif ├── deleteRev.png ├── excel.png ├── info.png ├── line.png ├── lineSmall.png ├── manage.png ├── moveBeam.png ├── movement-arrows.png ├── multipleJoin.png ├── multipleSections.png ├── overlap.png ├── project.png ├── revCloud.png ├── revCloudsmall.png ├── reviTab.PNG ├── reviTab00.PNG ├── ruler.png ├── rulerSmall.png ├── selectFilter.png ├── selectText.png ├── sheets.png ├── split.png ├── swapGrids.png ├── switchJoin.png ├── tag.png ├── tagSmall.png ├── totalLength.png ├── unjoinAll.png ├── unjoinMultiple.png ├── wallSplit.png ├── wiping.png ├── wipingSmall.png └── xref.png └── test.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/.gitignore -------------------------------------------------------------------------------- /Addin.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/Addin.zip -------------------------------------------------------------------------------- /Dashboard Date.rfa (1): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/Dashboard Date.rfa (1) -------------------------------------------------------------------------------- /Helpers/HelpPrint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/Helpers/HelpPrint.cs -------------------------------------------------------------------------------- /Helpers/HelperMe.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/Helpers/HelperMe.csproj -------------------------------------------------------------------------------- /Helpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/Helpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/README.md -------------------------------------------------------------------------------- /ReviTab/ApplicationRibbon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/ApplicationRibbon.cs -------------------------------------------------------------------------------- /ReviTab/Button Tags/PlaceTags - Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Button Tags/PlaceTags - Copy.cs -------------------------------------------------------------------------------- /ReviTab/Button Tags/PlaceTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Button Tags/PlaceTags.cs -------------------------------------------------------------------------------- /ReviTab/Button Tags/SaveTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Button Tags/SaveTags.cs -------------------------------------------------------------------------------- /ReviTab/Button Tags/SelectAllTagsInViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Button Tags/SelectAllTagsInViewport.cs -------------------------------------------------------------------------------- /ReviTab/Button Tags/TagElementsInViewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Button Tags/TagElementsInViewport.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/AddActiveViewToSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/AddActiveViewToSheet.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/AddLegendToSheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/AddLegendToSheets.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/AddMultipleViewsToSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/AddMultipleViewsToSheet.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/AlignViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/AlignViews.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/CreateSheetByNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/CreateSheetByNumber.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/CreateViewSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/CreateViewSet.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/DeleteLineStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/DeleteLineStyles.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/DeleteTextFont.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/DeleteTextFont.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/DuplicateSheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/DuplicateSheets.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/ExportToSVG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/ExportToSVG.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/ExtendGrids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/ExtendGrids.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/ExtractDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/ExtractDetail.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/LineStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/LineStyles.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/MatchSectionViewCrop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/MatchSectionViewCrop.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/MoveViewportToSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/MoveViewportToSheet.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/Parameterizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/Parameterizer.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/RemoveFirstRevision.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/RemoveFirstRevision.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/RhinoImport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/RhinoImport.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/SelectByParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/SelectByParameter.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/SetTitleblockScale.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/SetTitleblockScale.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/TextFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/TextFonts.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Documentation/UpRevSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Documentation/UpRevSheet.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/ExportViewTemplates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/ExportViewTemplates.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/RevisionCloudsSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/RevisionCloudsSummary.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/SelectFromExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/SelectFromExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/SelectedDataParametersToExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/SelectedDataParametersToExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/SelectedDataToExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/SelectedDataToExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/UpdateFromExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/UpdateFromExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/UpdateViewportsFromExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/UpdateViewportsFromExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Excel/ViewportsToExcel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Excel/ViewportsToExcel.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/AddTagsApplyUndo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/AddTagsApplyUndo.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/BeamByTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/BeamByTypeName.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/ChangeBeamLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/ChangeBeamLocation.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/ColumnSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/ColumnSplitter.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/EditBeamJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/EditBeamJoin.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/JoinMultiple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/JoinMultiple.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/LockOpenings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/LockOpenings.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/MoveBeamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/MoveBeamEnd.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/SetBeamZOffset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/SetBeamZOffset.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/SwitchJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/SwitchJoin.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/UnjoinAll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/UnjoinAll.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/UnjoinElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/UnjoinElements.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/VoidByFace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/VoidByFace.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/VoidByLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/VoidByLine.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/VoidByRefPlane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/VoidByRefPlane.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Framings and Walls/WallSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Framings and Walls/WallSplitter.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/CreateExtrusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/CreateExtrusion.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/DrawModelCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/DrawModelCurve.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/DrawObjectAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/DrawObjectAxis.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/ProjectLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/ProjectLines.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/RhinoSpline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/RhinoSpline.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/SATtoDirectShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/SATtoDirectShape.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Geometry/WallTopographyIntersections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Geometry/WallTopographyIntersections.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Management/PushToAirtable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Management/PushToAirtable.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Management/PushToDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Management/PushToDB.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Management/UpdateModelStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Management/UpdateModelStatus.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/AlignColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/AlignColumns.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/CopyLinkedElements.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/CopyLinkedElements.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/CopyViewFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/CopyViewFilters.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/CreateNurbsModelCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/CreateNurbsModelCurve.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/CreateSectionColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/CreateSectionColumns.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/CreateSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/CreateSections.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/DisableWarnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/DisableWarnings.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/ExportJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/ExportJson.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionBeams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionBeams.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionColumns.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionDimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionDimensions.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionGrids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionGrids.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionLines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionLines.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionTags.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionText.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FilterSelectionWalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FilterSelectionWalls.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/FlipSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/FlipSections.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/IntersectPlaneMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/IntersectPlaneMesh.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/IsolateCategories.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/IsolateCategories.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/OpenLastCreatedView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/OpenLastCreatedView.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/OverrideColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/OverrideColors.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/OverrideDimensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/OverrideDimensions.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/PrintSelected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/PrintSelected.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/PropagateGridExtents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/PropagateGridExtents.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/RevCloudsOLD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/RevCloudsOLD.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/RevCloudsSelected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/RevCloudsSelected.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/RhinoMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/RhinoMesh.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/SelectAllText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/SelectAllText.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/SelectTitleblocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/SelectTitleblocks.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/ShowSelected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/ShowSelected.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/SwapGridBubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/SwapGridBubble.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Tools/SwapLevelsBubble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Tools/SwapLevelsBubble.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/AddPDFcustomProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/AddPDFcustomProperties.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/ClaritySetup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/ClaritySetup.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/ColorTab.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/ColorTab.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/Howl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/Howl.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/PanicButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/PanicButton.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/PrintInBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/PrintInBackground.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/PurgeFamily.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/PurgeFamily.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/SuppressWarnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/SuppressWarnings.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/Unsuscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/Unsuscribe.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/UpdateSuscribe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/UpdateSuscribe.cs -------------------------------------------------------------------------------- /ReviTab/Buttons Zero State/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Buttons Zero State/VersionInfo.cs -------------------------------------------------------------------------------- /ReviTab/Commands/AddMetadataHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/AddMetadataHelpers.cs -------------------------------------------------------------------------------- /ReviTab/Commands/ButtonPickPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/ButtonPickPoint.cs -------------------------------------------------------------------------------- /ReviTab/Commands/ElementFilters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/ElementFilters.cs -------------------------------------------------------------------------------- /ReviTab/Commands/GeomUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/GeomUtils.cs -------------------------------------------------------------------------------- /ReviTab/Commands/GlobalObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/GlobalObjects.cs -------------------------------------------------------------------------------- /ReviTab/Commands/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/Helpers.cs -------------------------------------------------------------------------------- /ReviTab/Commands/PlaceTags/AcceptChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/PlaceTags/AcceptChanges.cs -------------------------------------------------------------------------------- /ReviTab/Commands/PlaceTags/HelpersPlaceTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/PlaceTags/HelpersPlaceTags.cs -------------------------------------------------------------------------------- /ReviTab/Commands/PlaceTags/PlaceTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/PlaceTags/PlaceTags.cs -------------------------------------------------------------------------------- /ReviTab/Commands/PlaceTags/UndoChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/PlaceTags/UndoChanges.cs -------------------------------------------------------------------------------- /ReviTab/Commands/Press.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/Press.cs -------------------------------------------------------------------------------- /ReviTab/Commands/Rhynamo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/Rhynamo.cs -------------------------------------------------------------------------------- /ReviTab/Commands/VoidByLineHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Commands/VoidByLineHelpers.cs -------------------------------------------------------------------------------- /ReviTab/Dashboard Family.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Dashboard Family.rfa -------------------------------------------------------------------------------- /ReviTab/Forms/CmdWindowHandleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/CmdWindowHandleForm.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/CmdWindowHandleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/CmdWindowHandleForm.cs -------------------------------------------------------------------------------- /ReviTab/Forms/CmdWindowHandleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/CmdWindowHandleForm.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddActiveView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddActiveView.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddActiveView.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddActiveView.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddActiveView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddActiveView.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMetadata.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMetadata.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMetadata.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMetadata.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMetadata.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMultipleViews.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMultipleViews.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMultipleViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMultipleViews.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddMultipleViews.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddMultipleViews.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddOpening.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddOpening.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddOpening.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddOpening.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormAddOpening.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormAddOpening.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormCopyLinkedElements.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCopyLinkedElements.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormCopyLinkedElements.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCopyLinkedElements.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCopyViewFilter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCopyViewFilter.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormCopyViewFilter.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCopyViewFilter.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSections.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSections.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSections.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSections.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSections.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSheet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSheet.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSheet.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateSheet.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateSheet.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateViewSet.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateViewSet.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateViewSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateViewSet.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormCreateViewSet.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormCreateViewSet.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormDuplicateSheets.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormDuplicateSheets.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormDuplicateSheets.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormDuplicateSheets.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormHowl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormHowl.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormHowl.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormHowl.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormHowl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormHowl.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormInputCombobox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormInputCombobox.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormInputCombobox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormInputCombobox.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormJoin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormJoin.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormJoin.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormJoin.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormJoin.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormJoin.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormNeumorphism.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormNeumorphism.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormNeumorphism.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormNeumorphism.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormOpenFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormOpenFile.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormOpenFile.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormOpenFile.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormOpenFile.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormOpenFile.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormPickFromDropDown.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPickFromDropDown.xaml -------------------------------------------------------------------------------- /ReviTab/Forms/FormPickFromDropDown.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPickFromDropDown.xaml.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormPickSheets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPickSheets.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormPickSheets.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPickSheets.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormPickSheets.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPickSheets.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormPlaceTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPlaceTags.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormPlaceTags.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPlaceTags.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormPlaceTags.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormPlaceTags.resx -------------------------------------------------------------------------------- /ReviTab/Forms/FormSelectionDropDown.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormSelectionDropDown.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormSelectionDropDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormSelectionDropDown.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormTwoTextBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormTwoTextBoxes.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormTwoTextBoxes.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormTwoTextBoxes.designer.cs -------------------------------------------------------------------------------- /ReviTab/Forms/FormTwoTextBoxes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Forms/FormTwoTextBoxes.resx -------------------------------------------------------------------------------- /ReviTab/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ReviTab/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resource1.Designer.cs -------------------------------------------------------------------------------- /ReviTab/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resource1.resx -------------------------------------------------------------------------------- /ReviTab/Resources/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/Icon.ico -------------------------------------------------------------------------------- /ReviTab/Resources/Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/Icon1.ico -------------------------------------------------------------------------------- /ReviTab/Resources/LeannPopUp.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/LeannPopUp.resx -------------------------------------------------------------------------------- /ReviTab/Resources/addBeamOpening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addBeamOpening.png -------------------------------------------------------------------------------- /ReviTab/Resources/addBeamOpeningSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addBeamOpeningSmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/addMultipleViews.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addMultipleViews.png -------------------------------------------------------------------------------- /ReviTab/Resources/addRev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addRev.png -------------------------------------------------------------------------------- /ReviTab/Resources/addSheetByNumber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addSheetByNumber.png -------------------------------------------------------------------------------- /ReviTab/Resources/addView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/addView.png -------------------------------------------------------------------------------- /ReviTab/Resources/airtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/airtable.png -------------------------------------------------------------------------------- /ReviTab/Resources/alignColumns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/alignColumns.png -------------------------------------------------------------------------------- /ReviTab/Resources/alignViewports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/alignViewports.png -------------------------------------------------------------------------------- /ReviTab/Resources/arrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/arrowUp.png -------------------------------------------------------------------------------- /ReviTab/Resources/arrowUpSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/arrowUpSmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/axis.png -------------------------------------------------------------------------------- /ReviTab/Resources/backgroundPrint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/backgroundPrint.png -------------------------------------------------------------------------------- /ReviTab/Resources/bground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/bground.png -------------------------------------------------------------------------------- /ReviTab/Resources/changebeamlocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/changebeamlocation.png -------------------------------------------------------------------------------- /ReviTab/Resources/claSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/claSetup.png -------------------------------------------------------------------------------- /ReviTab/Resources/cloudSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/cloudSelection.png -------------------------------------------------------------------------------- /ReviTab/Resources/cloudSelectionCopy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/cloudSelectionCopy.png -------------------------------------------------------------------------------- /ReviTab/Resources/columnSection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/columnSection.png -------------------------------------------------------------------------------- /ReviTab/Resources/columnSplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/columnSplit.png -------------------------------------------------------------------------------- /ReviTab/Resources/copyGridExtents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/copyGridExtents.png -------------------------------------------------------------------------------- /ReviTab/Resources/copyLinked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/copyLinked.png -------------------------------------------------------------------------------- /ReviTab/Resources/copyViewFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/copyViewFilter.png -------------------------------------------------------------------------------- /ReviTab/Resources/createViewSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/createViewSet.png -------------------------------------------------------------------------------- /ReviTab/Resources/deleteRev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/deleteRev.png -------------------------------------------------------------------------------- /ReviTab/Resources/dimensionOverride.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/dimensionOverride.png -------------------------------------------------------------------------------- /ReviTab/Resources/directShape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/directShape.png -------------------------------------------------------------------------------- /ReviTab/Resources/drawAxis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/drawAxis.png -------------------------------------------------------------------------------- /ReviTab/Resources/duplicateSheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/duplicateSheets.png -------------------------------------------------------------------------------- /ReviTab/Resources/duplicateView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/duplicateView.png -------------------------------------------------------------------------------- /ReviTab/Resources/elementType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/elementType.png -------------------------------------------------------------------------------- /ReviTab/Resources/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/excel.png -------------------------------------------------------------------------------- /ReviTab/Resources/extractDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/extractDetail.png -------------------------------------------------------------------------------- /ReviTab/Resources/flatten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/flatten.png -------------------------------------------------------------------------------- /ReviTab/Resources/flipSection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/flipSection.png -------------------------------------------------------------------------------- /ReviTab/Resources/ghowlicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/ghowlicon.png -------------------------------------------------------------------------------- /ReviTab/Resources/ghowlicon16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/ghowlicon16x16.png -------------------------------------------------------------------------------- /ReviTab/Resources/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/info.png -------------------------------------------------------------------------------- /ReviTab/Resources/info16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/info16x16.png -------------------------------------------------------------------------------- /ReviTab/Resources/isoCategory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/isoCategory.png -------------------------------------------------------------------------------- /ReviTab/Resources/joinEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/joinEnd.png -------------------------------------------------------------------------------- /ReviTab/Resources/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/legend.png -------------------------------------------------------------------------------- /ReviTab/Resources/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/line.png -------------------------------------------------------------------------------- /ReviTab/Resources/lineSection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/lineSection.png -------------------------------------------------------------------------------- /ReviTab/Resources/lineSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/lineSmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/lock.png -------------------------------------------------------------------------------- /ReviTab/Resources/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/manage.png -------------------------------------------------------------------------------- /ReviTab/Resources/metadata.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/metadata.ico -------------------------------------------------------------------------------- /ReviTab/Resources/metadata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/metadata.png -------------------------------------------------------------------------------- /ReviTab/Resources/moveViewports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/moveViewports.png -------------------------------------------------------------------------------- /ReviTab/Resources/movement-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/movement-arrows.png -------------------------------------------------------------------------------- /ReviTab/Resources/multipleJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/multipleJoin.png -------------------------------------------------------------------------------- /ReviTab/Resources/multipleSections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/multipleSections.png -------------------------------------------------------------------------------- /ReviTab/Resources/overrideColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/overrideColors.png -------------------------------------------------------------------------------- /ReviTab/Resources/panButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/panButton.png -------------------------------------------------------------------------------- /ReviTab/Resources/panButton_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/panButton_small.png -------------------------------------------------------------------------------- /ReviTab/Resources/panic-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/panic-button.png -------------------------------------------------------------------------------- /ReviTab/Resources/projectLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/projectLine.png -------------------------------------------------------------------------------- /ReviTab/Resources/projectLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/projectLines.png -------------------------------------------------------------------------------- /ReviTab/Resources/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/rainbow.png -------------------------------------------------------------------------------- /ReviTab/Resources/revCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/revCloud.png -------------------------------------------------------------------------------- /ReviTab/Resources/revCloudsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/revCloudsmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/rhinoImport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/rhinoImport.png -------------------------------------------------------------------------------- /ReviTab/Resources/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/ruler.png -------------------------------------------------------------------------------- /ReviTab/Resources/rulerSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/rulerSmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectBeams.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectBeams.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectColumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectColumn.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectDimensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectDimensions.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectFilter.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectGrid.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectLines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectLines.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectTags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectTags.png -------------------------------------------------------------------------------- /ReviTab/Resources/selectText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/selectText.png -------------------------------------------------------------------------------- /ReviTab/Resources/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/show.png -------------------------------------------------------------------------------- /ReviTab/Resources/showLatest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/showLatest.png -------------------------------------------------------------------------------- /ReviTab/Resources/showSelected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/showSelected.png -------------------------------------------------------------------------------- /ReviTab/Resources/splitWalls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/splitWalls.png -------------------------------------------------------------------------------- /ReviTab/Resources/swapGrids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/swapGrids.png -------------------------------------------------------------------------------- /ReviTab/Resources/swapLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/swapLevels.png -------------------------------------------------------------------------------- /ReviTab/Resources/switchJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/switchJoin.png -------------------------------------------------------------------------------- /ReviTab/Resources/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/tag.png -------------------------------------------------------------------------------- /ReviTab/Resources/tagSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/tagSmall.png -------------------------------------------------------------------------------- /ReviTab/Resources/tblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/tblock.png -------------------------------------------------------------------------------- /ReviTab/Resources/topoIntersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/topoIntersect.png -------------------------------------------------------------------------------- /ReviTab/Resources/totalLength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/totalLength.png -------------------------------------------------------------------------------- /ReviTab/Resources/unjoinAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/unjoinAll.png -------------------------------------------------------------------------------- /ReviTab/Resources/unjoinMultiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/unjoinMultiple.png -------------------------------------------------------------------------------- /ReviTab/Resources/wiping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/wiping.png -------------------------------------------------------------------------------- /ReviTab/Resources/wipingSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Resources/wipingSmall.png -------------------------------------------------------------------------------- /ReviTab/ReviTab.addin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/ReviTab.addin -------------------------------------------------------------------------------- /ReviTab/ReviTab.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/ReviTab.csproj -------------------------------------------------------------------------------- /ReviTab/RevitElementDrawingServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/RevitElementDrawingServer.cs -------------------------------------------------------------------------------- /ReviTab/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Util.cs -------------------------------------------------------------------------------- /ReviTab/Web_Peno_C.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Web_Peno_C.rfa -------------------------------------------------------------------------------- /ReviTab/Web_Peno_R.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/Web_Peno_R.rfa -------------------------------------------------------------------------------- /ReviTab/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/app.config -------------------------------------------------------------------------------- /ReviTab/gHowl/Formatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/gHowl/Formatter.cs -------------------------------------------------------------------------------- /ReviTab/gHowl/SendPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/gHowl/SendPattern.cs -------------------------------------------------------------------------------- /ReviTab/gHowl/UdpSenderComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/gHowl/UdpSenderComponent.cs -------------------------------------------------------------------------------- /ReviTab/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/ReviTab/packages.config -------------------------------------------------------------------------------- /RevitSamples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/RevitSamples.sln -------------------------------------------------------------------------------- /images/ChangeBeamLocation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/ChangeBeamLocation.gif -------------------------------------------------------------------------------- /images/Dashboard Date.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Dashboard Date.rfa -------------------------------------------------------------------------------- /images/Dashboard Family.rfa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Dashboard Family.rfa -------------------------------------------------------------------------------- /images/Dashboard.rvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Dashboard.rvt -------------------------------------------------------------------------------- /images/EditBeamJoins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/EditBeamJoins.gif -------------------------------------------------------------------------------- /images/FilterSelection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/FilterSelection.gif -------------------------------------------------------------------------------- /images/Flatten.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Flatten.gif -------------------------------------------------------------------------------- /images/JoinMultiple.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/JoinMultiple.gif -------------------------------------------------------------------------------- /images/MoveBeamEnd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/MoveBeamEnd.gif -------------------------------------------------------------------------------- /images/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Reset.png -------------------------------------------------------------------------------- /images/Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Select.png -------------------------------------------------------------------------------- /images/Uprev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/Uprev.png -------------------------------------------------------------------------------- /images/UprevSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/UprevSmall.png -------------------------------------------------------------------------------- /images/VoidByFace.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/VoidByFace.mp4 -------------------------------------------------------------------------------- /images/addBeamOpening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/addBeamOpening.png -------------------------------------------------------------------------------- /images/addBeamOpeningSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/addBeamOpeningSmall.png -------------------------------------------------------------------------------- /images/addRev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/addRev.png -------------------------------------------------------------------------------- /images/airtable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/airtable.png -------------------------------------------------------------------------------- /images/arrowUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/arrowUp.png -------------------------------------------------------------------------------- /images/arrowUpSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/arrowUpSmall.png -------------------------------------------------------------------------------- /images/copyLinkedElements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/copyLinkedElements.gif -------------------------------------------------------------------------------- /images/deleteRev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/deleteRev.png -------------------------------------------------------------------------------- /images/excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/excel.png -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/info.png -------------------------------------------------------------------------------- /images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/line.png -------------------------------------------------------------------------------- /images/lineSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/lineSmall.png -------------------------------------------------------------------------------- /images/manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/manage.png -------------------------------------------------------------------------------- /images/moveBeam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/moveBeam.png -------------------------------------------------------------------------------- /images/movement-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/movement-arrows.png -------------------------------------------------------------------------------- /images/multipleJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/multipleJoin.png -------------------------------------------------------------------------------- /images/multipleSections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/multipleSections.png -------------------------------------------------------------------------------- /images/overlap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/overlap.png -------------------------------------------------------------------------------- /images/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/project.png -------------------------------------------------------------------------------- /images/revCloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/revCloud.png -------------------------------------------------------------------------------- /images/revCloudsmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/revCloudsmall.png -------------------------------------------------------------------------------- /images/reviTab.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/reviTab.PNG -------------------------------------------------------------------------------- /images/reviTab00.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/reviTab00.PNG -------------------------------------------------------------------------------- /images/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/ruler.png -------------------------------------------------------------------------------- /images/rulerSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/rulerSmall.png -------------------------------------------------------------------------------- /images/selectFilter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/selectFilter.png -------------------------------------------------------------------------------- /images/selectText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/selectText.png -------------------------------------------------------------------------------- /images/sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/sheets.png -------------------------------------------------------------------------------- /images/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/split.png -------------------------------------------------------------------------------- /images/swapGrids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/swapGrids.png -------------------------------------------------------------------------------- /images/switchJoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/switchJoin.png -------------------------------------------------------------------------------- /images/tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/tag.png -------------------------------------------------------------------------------- /images/tagSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/tagSmall.png -------------------------------------------------------------------------------- /images/totalLength.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/totalLength.png -------------------------------------------------------------------------------- /images/unjoinAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/unjoinAll.png -------------------------------------------------------------------------------- /images/unjoinMultiple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/unjoinMultiple.png -------------------------------------------------------------------------------- /images/wallSplit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/wallSplit.png -------------------------------------------------------------------------------- /images/wiping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/wiping.png -------------------------------------------------------------------------------- /images/wipingSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/wipingSmall.png -------------------------------------------------------------------------------- /images/xref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/images/xref.png -------------------------------------------------------------------------------- /test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/giobel/ReviTab/HEAD/test.cs --------------------------------------------------------------------------------