Git Product home page Git Product logo

Comments (3)

andyward avatar andyward commented on September 27, 2024

Can you be clear about what the issue relates to? If there's an issue it would help to see a failing test case

from xbimessentials.

VladislavShirinkinITEM avatar VladislavShirinkinITEM commented on September 27, 2024

This relates to integration with other projects, which uses canonical matrix operations. OpenGL and DirectX shaders for example.
If we have many transforms we should know that multiplication order is different
The case:

  1. M1 - element transform
  2. M2 - model transform
  3. M3 - world transform

multiplication order in GLSL to get screen coords from 3d-space:

$$u_1 = M_3 \times M_2 \times M_1 \times v$$

using xBim matrices we'll write

$$u_2 = v \times M_1 \times M_2 \times M_3$$

that because of

$$(M_1 \times M_2)^T = M_2^T \times M_1^T$$

Difference between u1 and u2 is transposition, but vector is just list of numbers we can't see difference.

from xbimessentials.

andyward avatar andyward commented on September 27, 2024

Any thoughts @martin1cerny ? This is above my pay grade

I'm unsure of the implications. i.e. what is broken? what is this solution? what will break if we apply a solution? What test cases do we have around this.

from xbimessentials.

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.