Questions tagged [o3d]

An open-source JavaScript API created by Google for creating rich, interactive 3D applications in the browser.

20 questions
34
votes
17 answers

Unity, Torque3D, Google O3D, WebGl....which to choose?

for development of interactive 3d web applications, which engine is recommended? I am aware that WebGL has been anounced to become standarized for all browsers in the near future (1~2 years). I am afraid that by investing time into a proprietary…
gpwjg
  • 365
  • 1
  • 3
  • 3
3
votes
2 answers

How to add texture to a mesh in python Open3d?

I am working with a triangle meshes with python Open3d and I want to add a texture mapping to my mesh (I didn't find it in the documentation), this is an example code with simple cube mesh: import numpy as np import open3d as…
Nadav Geva
  • 31
  • 1
  • 1
  • 4
2
votes
3 answers

Has anyone tried out Google's O3D plugin for 3D graphics?

I just found out about Google's O3D project, for rendering 3D graphics in Browsers using html and javascript. It seems nice, although the graphics are about 5 years outdated as far as I could see. Has anyone tried it out?
Robert Gould
  • 68,773
  • 61
  • 187
  • 272
2
votes
1 answer

Textbox cant be selected or set to focus

I am using the latest Minefield and Chrome nightly builds; at the official O3D webgl samples (ie.http://o3d.googlecode.com/svn/trunk/samples_webgl/o3d-webgl-samples/customcamera.html) I cant change any of the text in the non-disabled html text…
Chris
  • 2,340
  • 6
  • 40
  • 63
1
vote
2 answers

How to pass a variable as an argument to a function if the variable exists

I want to use a function and pass an argument to it whether a variable exists. If the variable does not exist, then I want to use the function with the default value of the argument. So far my code looks like this: if transformation: ''' If…
mkr
  • 17
  • 6
1
vote
1 answer

What's happening with the Google O3D WebGL wrapper?

I am not seeing any updates for Google O3D WebGL wrapper for a very long time, and I am not seeing much in the form of posts regarding o3d webgl on this site or other content on the internet - what's happening with O3D WebGL wrapper is it still in…
Chris
  • 2,340
  • 6
  • 40
  • 63
1
vote
2 answers

Best way for displaying 3D objects on the WEB

I have 3D objects in .STL file format. I need to display them at my WEB page, and I'm looking for the best viewer for displaying .STL files on the WEB page. Actually I'm not even sure if the .STL format is the best format for showing the 3D files,…
delux
  • 1,694
  • 10
  • 33
  • 64
1
vote
1 answer

Centering my O3D canvas

I would like to have a centered O3D canvas. Can anyone suggest how I might do this?
Mike2012
  • 7,629
  • 15
  • 84
  • 135
0
votes
1 answer

o3D samples can't run in localhost

I have downloaded the samples from Google o3d,but it can't run in my computer.The question like this:Even I install the o3d plug-in again and again, it always prompt me that I have to install this plug-in when I visit the samples' website that I…
tnt123688
  • 1
  • 2
0
votes
1 answer

WebGL Water Shader with Texture and Reflection in O3D .. anyone have an example?

WebGL Water Shader with Texture and Reflection in O3D .. anyone have an example? Thanks
Chris
  • 2,340
  • 6
  • 40
  • 63
0
votes
1 answer

What's the maximum far plane of an o3d (webgl) projection?

Hi, I am using the following javascript... g_viewInfo.drawContext.projection = g_math.matrix4.perspective( g_math.degToRad(30), // 30 degree fov. g_client.width / g_client.height, 1, // Near plane. …
Chris
  • 2,340
  • 6
  • 40
  • 63
0
votes
1 answer

Possible to get vertices and indices of o3d.Shape?

I am using o3d webgl library with chrome nightly and minefield. I am looking for someone who knows how I can obtain the vertices and indices from an o3d.Shape object. The reason why I would like to do this is so that I can utilize the primitive…
Chris
  • 2,340
  • 6
  • 40
  • 63
0
votes
1 answer

o3d textures and transparency

I'm working at galery on o3d(plagin version) and I need make photos transparent. Photos are on hud. Here is some code: g_canvasInfoPict = o3djs.canvas.create(g_pack, g_hudRoot, g_hudViewInfo); alphaParam =…
Anton
  • 1
  • 1
0
votes
2 answers

o3d javascript uncaught reference error

im new to javascript and am intersted in creating a small o3d script:
David Menard
  • 2,261
  • 3
  • 43
  • 67
0
votes
2 answers

can google o3d and jQuery be used in the same page?

I would like to use both of these library on the same page but they seem to conflict when they are loaded at the same time. Does anyone know of any examples where they are both used or what might help prevent conflicts?
nkassis
  • 5,285
  • 2
  • 21
  • 22
1
2