Questions tagged [vrml]

VRML is a 3D markup language implemented as a browser plug-in.

VRML (Virtual Reality Modeling Language, pronounced vermal or by its initials, originally—before 1995—known as the Virtual Reality Markup Language) is a standard file format for representing 3-dimensional (3D) interactive vector graphics, designed particularly with the World Wide Web in mind. It has been superseded by X3D.

93 questions
0
votes
2 answers

Order of transformations in X3d

I have the following 2 transformations applied to a cylinder in X3d:
korppu73
  • 237
  • 1
  • 2
  • 5
0
votes
2 answers

Convert .wrl (VRML) to .dae (COLLADA) using MeshLab results missing colors

I used MeshLab to open a VRML .wrl model. The model was shown just fine in MeshLab. My goal was to convert .wrl to COLLADA so I can later import .dae into Unity or SketchUp, hoping I can have a working mesh with colors, see Image 1 below. I tried to…
mccidlee
  • 1
  • 2
0
votes
1 answer

Open WRL file (VRML) from .NET

For some reason, I would display vrml model from my VB.net dialog, does anyone has ideas how to do it? Thanks Terry
Terry Chan
  • 25
  • 4
0
votes
0 answers

The equivalent of "examine mode" in A-Frame

How is "examine" mode enabled in an A-Frame scene? This is the mode that the Visual Inspector uses to browse through the scene and it is also the mode used in this showcase example. VRML had the NavigationInfo node which provided three viewing…
A_A
  • 2,326
  • 18
  • 27
0
votes
0 answers

What is the difference between vrmlloader.js and vrmloader.js?

I have looked online and could not find a proper post explaining what the difference of application is between the vrmlloader.js and vrmloader.js. Does anyone mind explaining or rederecting me to a page where I can read/learn about the difference…
MonkeyZK
  • 1
  • 1
0
votes
1 answer

Where are the issues in this conversion from VRML to X3D?

I have a legacy VRML project from 2003 with a couple of VRML models. I converted the VRML to X3D (so I can load them with X3DOM) with InstantReality converter. One model is incomplete with missing colours and shapes, the other doesn't appear at…
Dave Everitt
  • 17,193
  • 6
  • 67
  • 97
0
votes
2 answers

How to convert Geometry ElevationGrid of VRML to Aframe

everyone. I have an issue in converting VRML to A-frame. VRML has the "Geometry ElevationGrid" function to set the DEM value of the texture. Instance code is as follows. geometry ElevationGrid { xDimension 9 zDimension 9 xSpacing 1.0 …
0
votes
0 answers

How to apply a texture on a mesh exported from blender as wrl and imported into threejs using VRMLLoader

I have exported a simple box mesh from blender as wrl. I have "smart uv unwrap"ed the mesh also. I am using this mesh only for it's geometry and am applying material through threejs. I am then binding a texture with the imported mesh, and i am also…
JDoe
  • 96
  • 2
  • 10
0
votes
1 answer

How to load VRML models (wrl) with three.js

I am trying to load a VRML model with three.js, but it seems my code does not work properly, and I cannot display the 3D model on a web page. Is there something wrong in my code? var loader = new…
Tak
  • 167
  • 1
  • 5
  • 18
0
votes
2 answers

High Level Graphics

I did a lot of VRML+Java work in college and loved it, but I feel like it's not really a marketable skill. Has anyone worked with a high level graphics API like open inventor, coin..etc that is actually in use to a degree that makes investing a lot…
samh
0
votes
1 answer

How to import VRML 2.0 on Meshlab

The file I'm trying to import this VRML file on Meshlab: #VRML 2.0 utf-8 PROTO my_sphere [ exposedField SFFVec3f xyz 0 0 0 ] { Transform { translation IS xyz children [ Shape { appearance Appearance {…
izxle
  • 386
  • 1
  • 3
  • 19
0
votes
1 answer

Visualize points as spheres without creating a sphere for each point

My data consists of at least 30k points each one of which I want to be visualized as a sphere, so I would see thousands of spheres forming a shape. I tried using VRML, because it looks very simple, but the file gets way too big because it consist of…
izxle
  • 386
  • 1
  • 3
  • 19
0
votes
1 answer

Why rotation along three axis is different than rotation each axis separately?

So I have this Box defined, which has a size of (1, 2, 3) which I rotate along all three axes with 45°: Transform { rotation 1 1 1 0.7854 children [ Shape { appearance Appearance { material Material {} } geometry Box { size 1 2 3…
0
votes
1 answer

Three.js coloring the wrong side of a VRML object's faces

Here's a VRML file that I'm trying to display with three.js. When I preview that file in a standalone viewer like view3dscene, it looks correct: However, in Three.js using the example VRMLLoader, the insides of the faces are colored instead of the…
75th Trombone
  • 1,364
  • 15
  • 28
0
votes
0 answers

Simulink 3D Animation using VRML

I've set up an animation of a tugboat [from VRML library] using the Virtual Reality Animation objects. but am having trouble with viewing the rotation of the boat. To be more specific: I have a simulator going, where I calculate from rigid body…