Skip to content
  1. Oct 02, 2019
    • David Thompson's avatar
      Free-form properties for all resources and components. · bac551d5
      David Thompson authored
      + Add property and property-storage classes.
      + Eliminate duplicate floating-point storage in smtk::model.
      + Eliminate `smtk/model/FloatData.h`.
        These types have moved to `smtk/resource/PropertyType.h`.
      + Eliminate m_floatData in smtk::model::Resource and methods
        that provided access.
        The new methods for accessing property are available on
        a per-entity basis in smtk::model::EntityRef.
      + Move SetProperty operation from model to operation
        directory/namespace.
      bac551d5
  2. Sep 25, 2019
  3. Sep 24, 2019
  4. Sep 21, 2019
  5. Sep 20, 2019
  6. Sep 19, 2019
  7. Sep 18, 2019
    • Robert M. O'Bara's avatar
      ENH: Controlling how double items are displayed · 6385076b
      Robert M. O'Bara 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>
      ```
      6385076b
    • T.J. Corona's avatar
      Merge topic 'fix-json-FileItemDefinition' · 183bd8a1
      T.J. Corona authored and Kitware Robot's avatar Kitware Robot committed
      
      
      abf2ff26 add file filters to json FileItemDefinition
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Acked-by: default avatarJohn Tourtellott <john.tourtellott@kitware.com>
      Merge-request: !1730
      183bd8a1
    • T.J. Corona's avatar
      add file filters to json FileItemDefinition · abf2ff26
      T.J. Corona authored
      abf2ff26
  8. Sep 17, 2019
  9. Sep 16, 2019
Loading