Coder Social home page Coder Social logo

RenderWindow example? about vtk-js HOT 4 CLOSED

kitware avatar kitware commented on August 20, 2024
RenderWindow example?

from vtk-js.

Comments (4)

martinken avatar martinken commented on August 20, 2024

Here is an example from before Seb converted them. I think it should work.

https://github.com/Kitware/vtk-js/blob/27abf6817e8edc621f00fbd441b551bde6d3e060/Examples/WebGL/Cone/index.js

But yes +1 we need to have at least one example that does not use the full screen helper.

from vtk-js.

jourdain avatar jourdain commented on August 20, 2024

Well you can also look at the content of the code of the FullScreenRenderWindow.

But I guess you are right, we should have a plain fully descriptive RenderWindow/Renderer/Interactor example. It's just always the same boilerplate, which pushed me to create that full screen guy so we won't have to much clutter in the examples code. ;-)

from vtk-js.

laurennlam avatar laurennlam commented on August 20, 2024

@zachmullen Here is an example I often use for my projects :

<div id="3DVisualization" style="height: 800px; width: 800px;"></div>

import vtkOpenGLRenderWindow     from 'vtk.js/Sources/Rendering/OpenGL/RenderWindow';
import vtkRenderer               from 'vtk.js/Sources/Rendering/Core/Renderer';
import vtkRenderWindow           from 'vtk.js/Sources/Rendering/Core/RenderWindow';
import vtkRenderWindowInteractor from 'vtk.js/Sources/Rendering/Core/RenderWindowInteractor';

initializeViewer(divName) {
  this.renderWindow = vtkRenderWindow.newInstance();
  this.renderer = vtkRenderer.newInstance();
  this.renderWindow.addRenderer(this.renderer);
  this.openglRenderWindow = vtkOpenGLRenderWindow.newInstance();
  const container = document.getElementById(divName);
  this.openglRenderWindow.setContainer(container);
  this.renderWindow.addView(this.openglRenderWindow);

  const dimsContainer = container.getBoundingClientRect();
  this.openglRenderWindow.setSize(dimsContainer.width, dimsContainer.height);

  this.interactor = vtkRenderWindowInteractor.newInstance();
  this.interactor.setView(this.openglRenderWindow);
  this.interactor.initialize();
  this.interactor.bindEvents(container);
}

Here, divName = 3DVisualization.

Hope it helps.

from vtk-js.

martinken avatar martinken commented on August 20, 2024

We now have a minimal example in Examples\WebGL\SimpleCone

from vtk-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.