Coder Social home page Coder Social logo

Comments (2)

GoogleCodeExporter avatar GoogleCodeExporter commented on May 27, 2024
Firstly, you should override viewer's onmousedown/onmouseup callbacks to setup 
your own event handlers. Both these methods have the same signatures as 
viewer.onmousexxx(x, y, button, depth, mesh). The last parameter indicates 
which mesh instance your pointer is currently on or null if none. 

Since you have the right mesh, you can create a new material with a different 
color and attach it to the mesh using mesh.setMaterial() method. This changes 
the looking of the specified mesh.

Finally, the viewer's update() method should be called at least once to apply 
the changes and render a new frame.

The implementation code may look like this:

// create viewer instance and load your models, etc.
...
// override viewer's onmousedown callback to implement selection effect
viewer.onmousedown = function(x, y, button, depth, mesh) {
  if(button == 0/*left button down*/ && mesh != null) {
    // create a new material with a different color (blue for example)
    var newMat = new JSC3D.Material('', 0, 0x000080, 0, true);
    // set the new material to the selected mesh
    mesh.setMaterial(newMat);
    // tell viewer to render a new frame
    viewer.update();
  }
};
...

That's it!

Please note that a material is applied on a whole mesh. There's no way to just 
change color of a particular area of it.

Original comment by [email protected] on 11 Jun 2013 at 2:40

from jsc3d.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 27, 2024
Thank You For your Support.

Original comment by [email protected] on 13 Jun 2013 at 6:18

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.