Git Product home page Git Product logo

Comments (4)

jnbrunet avatar jnbrunet commented on June 28, 2024

I also share your view @damienmarchal. It feels natural like this. When you pass an object or data as a parameter, you pass a "reference" to it. When you pass a value, you make a copy. +1 for me

from sofapython3.

damienmarchal avatar damienmarchal commented on June 28, 2024

Thanks @jnbrunet for the feedback.

Yesterday I made several tests to see the look and feel and made

def createScene(root):
    root.addObject("MeshObjLoader", filename="mesh/cube.obj", name="loader");
    a = root.addObject("PointSetTopologyContainer", position=root.loader.position.linkpath, name="topo") 
    b = root.addObject("PointSetTopologyContainer", position=root.loader.position.value, name="topo") 

So there is an explicit version for the two cases.
And for the implicit one:

    a = root.addObject("PointSetTopologyContainer", position=root.loader.position, name="topo") 

We need to decide if we continue to copy values (what we are doing right now) or if we make a link (more breaking ?).
With link-by-default, the performances will be very good but users has to understand what a link and fallback to value copy-value if this cause issues in their scenes .
with copy-by-default approach the performances will be bad and user will have to op-in for the fastest (link-base) version.

from sofapython3.

damienmarchal avatar damienmarchal commented on June 28, 2024

Another alternative could be to first deprecate (with a warning message) the existing implicit version then replace it with an exception saying that this ambiugous and force to replace it with one of the explicit ones.

a = root.addObject("PointSetTopologyContainer", position=root.loader.position.linkpath, name="topo") 
b = root.addObject("PointSetTopologyContainer", position=root.loader.position.value, name="topo") 

from sofapython3.

jnbrunet avatar jnbrunet commented on June 28, 2024

Hey @damienmarchal

I'm curious in which cases the user would prefer a copy against a (COW anyway?) link. I have a feeling that a link would be more appropriate for most needs, hence creating less frustrations for the user, but I may be wrong.

From experience, people will naturally set the attribute to the source data directly, i.e.:

node.addObject("MechanicalObject", position=node.loader.position)

And forget about it. It is also much simpler to read. But it does come with an implicit decision made for the user.

A warning here would, I think, generate a "What the f. is that? Which one should I use? I just want this component positions..." In the user's head.

I am usually in favor of explicit against implicit, but here I think it is a good case of simplicity outweighs the cost of implicity (the cost which I think is minimal anyway...) .

My 2 cents! Whatever you choose, it will be a great improvement.

from sofapython3.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.