Skip to content

Commit 90a5e58

Browse files
committed
final touch
1 parent 4be9565 commit 90a5e58

File tree

4 files changed

+30
-11
lines changed

4 files changed

+30
-11
lines changed
Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,20 @@
1-
## Revit database visualization (RDV)
1+
## Revit database visualization (RDV)
2+
3+
RDV works for selected element/object in the tree and/or on the list.
4+
5+
Available visualizations:
6+
7+
- model coordinate system displayed at (0,0,0)
8+
- for an Element, its bounding box with marked min and max points
9+
- for a Rebar, its Normal and marked start and end points
10+
- for an XYZ, small coordinate system at that point
11+
- BoundingBoxXYZ,
12+
- bounded Curve,
13+
- Edge,
14+
- Point,
15+
- Soild,
16+
- PlanarFace
17+
18+
19+
20+
**Visualizations are static, they are not automatically updated when element changes.**

readme.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,15 @@
22

33
**The fastest, most advanced, asynchronous Revit database exploration tool for Revit 2021+.**
44

5-
Yet another [RevitLookup](https://github.com/jeremytammik/RevitLookup) like tool. RevitLookup was an indispensable tool to work with Revit API for many years. But now, there is a better tool for the job. Let me introduce you to Revit database explorer and its capabilities. It not only allows us to **explore** database but also to:
6-
- **edit**, any parameter value
7-
- **query**, database with intuitive syntax that is translated into a FilteredElementCollector
8-
- **script**, by running ad hoc scripts written in C#
9-
- **visualize**, geometrical features of elements
5+
Yet another [RevitLookup](https://github.com/jeremytammik/RevitLookup) like tool. RevitLookup was an indispensable tool to work with Revit API for many years. But now, there is a better tool for the job. Let me introduce you to Revit database explorer. It not only allows us to **explore** database but also to:
6+
- **edit** any parameter value
7+
- **query** database with intuitive syntax that is translated into a FilteredElementCollector
8+
- **script** by running ad hoc scripts written in C#
9+
- **visualize** geometrical features of elements
1010

1111
List of features:
1212

13+
- [easier work with Element.Geometry](#easier-work-with-elementgeometry)
1314
- [compare objects and parameters](#compare-object-members-and-element-parameters-values)
1415
- [query Revit database](#query-revit-database-with-rdq-revit-database-querying)
1516
- [script Revit database](#script-revit-database-with-rds-revit-database-scripting)
@@ -19,7 +20,6 @@ List of features:
1920
- [edit parameter value](#edit-parameter-value)
2021
- [extensive support for ForgeTypeId](#extensive-support-for-forgetypeid)
2122
- [better support for Revit Extensible Storage](#better-support-for-revit-extensible-storage)
22-
- [easier work with Element.Geometry](#easier-work-with-elementgeometry)
2323
- [dark and light UI themes](#dark-and-light-ui-themes)
2424
- [snoop Revit events](#snoop-revit-events-with-rem-revit-event-monitor)
2525

@@ -41,7 +41,7 @@ Download and install [RevitDBExplorer.msi](https://github.com/NeVeSpl/RevitDBExp
4141

4242
### easier work with Element.Geometry
4343

44-
Revit database explorer provides visualization for geometrical features of various objects, also :
44+
Revit database explorer provides visualization for geometrical features of various objects and also :
4545

4646
- an instance of GeometryObject can be selected in Revit if it has a valid reference
4747
- mouse cursor position expressed in the Revit model coordinates can be find on the status bar

sources/RevitDBExplorer/UIComponents/Workspaces/WorkspaceViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public void PopulateExplorerTree(SourceOfObjects sourceOfObjects, bool workspace
180180
Title = "<???>";
181181
if (sourceOfObjects.Info is not null)
182182
{
183-
Title = sourceOfObjects.Info.ShortTitle.Truncate(33);
183+
Title = sourceOfObjects.Info.ShortTitle.Truncate(27);
184184
InfoAboutSource = sourceOfObjects.Info;
185185
}
186186
}

sources/RevitDBExplorer/UIComponents/Workspaces/WorkspacesView.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</Grid.ColumnDefinitions>
4040

4141
<TextBlock Text=">"
42-
Margin="2,0,1,-2"
42+
Margin="0,0,0,-2"
4343
Foreground="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}"
4444
VerticalAlignment="Center"
4545
/>
@@ -57,7 +57,7 @@
5757
VerticalAlignment="Center"
5858
HorizontalAlignment="Center"
5959
ContentSource="Header"
60-
Margin="9,0,9,0"
60+
Margin="6,0,6,0"
6161
RecognizesAccessKey="True"
6262
TextBlock.Foreground="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" />
6363
</Border>

0 commit comments

Comments
 (0)