• If an unknown transform string is encountered in an algorithm, attempt
    to load it via LoadStore, e.g.
    "Open+Cascade+landmark_model"
    would expand landmark_model to <landmark_model>. Additionally, arguments
    supplied to such unknown transforms are set via setPropertyRecursive
    e.g.
    "Open+Cascade+landmark_model(something=true)"
    works.
    
    Also allow _ in model names specified as the first argument to LoadStore
    Charles Otto authored
     
    Browse Code »
  • Introduce QList<Object*> Object::getChildren(), which returns the
    (immeidate) child objects of a given transform/distance. The default
    implementation looks for properties of the appropriate type.
    
    Implment setPropertyRecursive leveraging getChildren (this reduces the
    amount of special casing needed to implement spr).
    
    Special casing for stream, independent, and LoadStore due to various
    oddities in their handling of child transforms
    Charles Otto authored
     
    Browse Code »