- 01 Oct, 2019 2 commits
-
-
T.J. Corona authored
fdf96d21 Use a sane naming convention for merged entities Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1749
-
T.J. Corona authored
-
- 30 Sep, 2019 2 commits
-
-
T.J. Corona authored
757d2b5c Add merge operation to mesh session Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1747
-
T.J. Corona authored
-
- 28 Sep, 2019 2 commits
-
-
David Thompson authored
d79a4b0f Extend test timeouts for plugin (contract) tests. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1744
-
David Thompson authored
RGG takes time to build and fetching XMS from conan can also be slow. Add some documentation on contract tests, and a new gitattribute style so that section heading markings are not mistaken for git conflict markers.
-
- 27 Sep, 2019 6 commits
-
-
David Thompson authored
7dc6660d Name "New Resource" menu and its items. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1746
-
David Thompson authored
-
Bob Obara authored
4f88ef70 ENH: Added new Attribute Editing Dialog Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
John Tourtellott <john.tourtellott@kitware.com> Merge-request: !1742
-
Bob Obara authored
This is now used by qtInputsItem to create new expressions without having to go the view that is displaying them. Also fixed issue with group item tables not being resized vertically to make use of the extra space.
-
Aron Helser authored
24a6e1a9 Fix knee.smtk - reference knee.ex2, not hash.exo Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1743
-
Aron Helser authored
Incorrect model reference in new test data.
-
- 26 Sep, 2019 2 commits
-
-
Aron Helser authored
2eb3702e Removed one problematic test, displayMultiBlockModel-simple Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1740
-
Aron Helser authored
Old file format, and renders without alpha on some dashboard machines. Add some changenotes about testing.
-
- 25 Sep, 2019 6 commits
-
-
Aron Helser authored
15263602 Add new test data, knee.ex2, and test behavior. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1735
-
Bob Obara authored
d37731f6 ENH: Allow qtInputsItems to be updated when items change Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
John Tourtellott <john.tourtellott@kitware.com> Merge-request: !1736
-
Bob Obara authored
qtInputsItems::updateItemData now updates the underlying widgets if the associated attribute:Items are changed externally. Note that expressions are not currently supported.
-
John Tourtellott authored
-
John Tourtellott authored
a077fc77 Get simulation code from sbt filename instead of the directory name Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1739
-
John Tourtellott authored
a077fc77 Get simulation code from sbt filename instead of the directory name Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
T.J. Corona <tj.corona@kitware.com> Merge-request: !1739
-
- 24 Sep, 2019 3 commits
-
-
John Tourtellott authored
-
T.J. Corona authored
b03e4dfd ThreadPool: make exec() virtual so derived pools can override it Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1738
-
T.J. Corona authored
-
- 23 Sep, 2019 1 commit
-
-
Aron Helser authored
Don't pop up the modified data warning on exit, if we are running inside ctest. Also, add submodule init to setup script, in case user forgets to checkout with --recursive Slightly clearer error message for discrete reader.
-
- 21 Sep, 2019 3 commits
-
-
David Thompson authored
ae86eef4 Prevent a crash in extensible items with default values. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Bob Obara <bob.obara@kitware.com> Merge-request: !1734
-
David Thompson authored
-
David Thompson authored
ae86eef4 Prevent a crash in extensible items with default values. Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Bob Obara <bob.obara@kitware.com> Merge-request: !1734
-
- 20 Sep, 2019 3 commits
-
-
David Thompson authored
-
T.J. Corona authored
14d02262 Add vtkIONetCDF to list of dependencies for smtk/extension/vtk/io Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1733
-
T.J. Corona authored
This allows for access to vtkSLACReader
-
- 19 Sep, 2019 3 commits
-
-
Bob Obara authored
6385076b ENH: Controlling how double items are displayed Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
John Tourtellott <john.tourtellott@kitware.com> Merge-request: !1731
-
T.J. Corona authored
dad88648 Instantiate managed operations' parameters prior to observation. Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !1732
-
T.J. Corona authored
Parameters are constructed lazily, allowing for RAII while having derived classes construct parameters that are tailored to their use. This can cause a race condition when observers that are called on a different thread access parameters at the same time as the thread that created the operation. Since only managed operations are observed, we avoid this issue by accessing the parameters as they are created by the manager.
-
- 18 Sep, 2019 3 commits
-
-
Bob Obara authored
Using ItemViews you can now control how the double value item is displayed based using the following "attributes": * Notation - general display behavior. Supported values include: * Fixed - displays the value in fixed notation. This is equivalent to printf's %f flag * Scientific - displays the value in scientific notation. This is equivalent to printf's %e flag * Mixed - tries to determine the best notation to use. This is equivalent to printf's %g flag * Precision - controls the precision (in the case of Fixed and Scientific Notations) or significant digits (in the case of Mixed Notation) that are to be displayed when the value is not being edited. * EditPrecision - controls the precision (in the case of Fixed and Scientific Notations) or significant digits (in the case of Mixed Notation) that are to be displayed when the value is being edited. Example SBT Code: ```xml <View Type="Instanced" Title="General"> <InstancedAttributes> <Att Name="numerics-att" Type="numerics"> <ItemViews> <View Item="dt_init" Type="Default" Precision="6" EditPrecision="10"/> <View Item="dt_max" Type="Default" Precision="6" EditPrecision="10" Notation="Fixed"/> <View Item="dt_min" Type="Default" Precision="6" EditPrecision="10" Notation="Scientific"/> </ItemViews> </Att> <Att Name="outputs-att" Type="outputs" /> <Att Name="simulation-control-att" Type="simulation-control" /> <!-- <Att Name="Mesh" Type="mesh" /> --> </InstancedAttributes> </View> ```
-
T.J. Corona authored
abf2ff26 add file filters to json FileItemDefinition Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
John Tourtellott <john.tourtellott@kitware.com> Merge-request: !1730
-
T.J. Corona authored
-
- 17 Sep, 2019 4 commits
-
-
T.J. Corona authored
b95b2f05 Modify test to exercise ExtractSkin operation. ff3117c8 Add release notes for updates to mesh subsystem dc443b0c Add ability to suppress output for DeleteMesh 3e17c631 Fix typo in comment 6b663b53 Add operations to extract mesh skin, adjacencies efa2c879 ExtractByDihedralAngle: user angle input in degrees 139cfec3 Add MergeCoincidentPoints mesh operation b90606c0 DeleteMesh: hold onto input mesh ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
David Thompson <david.thompson@kitware.com> Merge-request: !1728
-
T.J. Corona authored
-
T.J. Corona authored
-
T.J. Corona authored
-