Coder Social home page Coder Social logo

.obj simple parser about phoria.js HOT 3 CLOSED

nenek avatar nenek commented on September 1, 2024
.obj simple parser

from phoria.js.

Comments (3)

kevinroast avatar kevinroast commented on September 1, 2024

The error suggests one of the points is missing a Z coordinate. Does this happen on all models you've tried or a specific one? Phoria is not resilient to models with broken geometry - I could add something to check the geometry data when an entity is created.
Can you point me at the example .obj file?

from phoria.js.

kevinroast avatar kevinroast commented on September 1, 2024

I think it may be a simple case that the object format you are importing is numbering the vertices from 1 - and in phoria.js they are numbered from zero. I'll try with your code and see if that's right.

from phoria.js.

kevinroast avatar kevinroast commented on September 1, 2024

Yep that is the problem. Also you are not waiting for your ajax async response to complete before returning the object! So you are returning an empty object every time.
I changed your code like this and it worked:

$.ajax({
url: file_url,
async: false
}).done(function(data) {...});

also this line:
vertices.push(parseInt(face[j].split('/')[0]) - 1); // -1 as vertices are numbered from 1 in .obj format

from phoria.js.

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.