Coder Social home page Coder Social logo

Comments (4)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
You can get test 3ds files from 
http://www.toucan.co.jp/3DCG/3ds/FlowerModelsE.html

Original comment by [email protected] on 11 Jul 2015 at 1:51

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
Found a way to load texture bmp file as following:
      // create a new Texture instance
      var myTexture = new JSC3D.Texture;
      // setup the handler which will be called when texture is ready
      myTexture.onready = function() {
            // assume a single model has already been loaded
            var scene = viewer.getScene();
            var myMesh = scene.getChildren()[0];
            // set texture to the model
            myMesh.setTexture(this);
            // notify viewer to deliver a new frame
            viewer.update();
      }
      // begin to load this texture from a given url
      myTexture.createFromUrl('rose/RoseRT.bmp');

Original comment by [email protected] on 11 Jul 2015 at 2:18

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
This ticket can be closed. Thanks.

Original comment by [email protected] on 11 Jul 2015 at 2:20

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 21, 2024
The only drawback is jsc3d does not have good lightness to the object. 

You can compare with http://www.ibiblio.org/e-notes/webgl/deflate/roseR.html

A little disappoint with the results. Any way to improve the lightness?

    var canvas = document.getElementById('cv');
    var viewer = new JSC3D.Viewer(canvas);
    viewer.setParameter('SceneUrl', 'rose/RoseR.3ds');
    viewer.setParameter('InitRotationX', 0);
    viewer.setParameter('InitRotationY', 0);
    viewer.setParameter('InitRotationZ', 0);
    viewer.setParameter('ModelColor', '#AAAAAA');
    viewer.setParameter('BackgroundColor1', '#007FFF');
    viewer.setParameter('BackgroundColor2', '#007FFF');
    viewer.setParameter('RenderMode', 'texturesmooth');
    viewer.setParameter('MipMapping', JSC3D.PlatformInfo.supportWebGL ? 'off' : 'on');
    viewer.setParameter('Renderer', 'webgl');
    viewer.init();
    viewer.update();

      var myTexture = new JSC3D.Texture;
      myTexture.onready = function() {
            var scene = viewer.getScene();
            var myMesh = scene.getChildren()[0];
            myMesh.setTexture(this);
            viewer.update();
      }
      myTexture.createFromUrl('rose/RoseRT.bmp');

Original comment by [email protected] on 11 Jul 2015 at 2:34

from jsc3d.

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.