3D computer graphics are graphics that use a three-dimensional representation of geometric data stored in the computer for the purposes of performing calculations and rendering 2D images.
-1
votes
0answers
30 views
How to plot a function of two variables in R ?
Like I want to plot z = 2*x + 3*y. x and y are vectors with 20 values. So z will also have 20 values corresponding to those. Please help. I want to see the variation of z when (x,y) changes.
4
votes
1answer
14 views
Android OpenGL ES Map Globe Like WhirlyGlobe in iOS
I need to make a Globe Map in android like this, i tried to search alot but found no helping results it's somewhat similar to this question, can any one help me out How should i implement it in ...
2
votes
1answer
19 views
Calculating 3x3 Covariance matrix with Python and Numpy of 3D data
I have 3D matrix and want to calculate the 3x3 covariance matrix of the data in Python using NumPy. numpy.cov only accepts 2d data, is there a way to transform the data to calculate the 3x3 covariance ...
0
votes
0answers
5 views
x3d - what blend modes to use
What blend modes and attributes must I use to achieve following effect:
First texture is a tileable grass texture and second texture is the opacity mask for that texture.
<MultiTexture ...
0
votes
0answers
17 views
Drawing lines and points in 3D space still impossible with pure WPF?
I've read few (old) posts and tutorials about drawing lines and points in WPF 3D.
They all say, that its impossible in pure WPF, and I have to use 3D Tools.
Has anything changed in that matter? (I ...
0
votes
1answer
11 views
Creating a world map scene with cubes in 3D? (WebGL, Three.js, Canvas)
I would like to create a world map in 3D perspective like this, including the shadow:
http://www.google.com/zeitgeist/2012/#explore
(Please wait 3 seconds for it to animate to its position)
On top ...
0
votes
0answers
14 views
AABB and rotating vectors
the following code is my vector rotation and axis aligned bounding box code, im drawing lines to form rectangles up to the depth of each aabb so i can actually see the bounding shape collide, when i ...
1
vote
0answers
50 views
Drawing inside the clipping coordinates
I defined a clipping volume for some drawing that I have to do and tried drawing a rectangle for which I am getting the input coordinates from an external source. For e.g.: The external sources gives ...
1
vote
1answer
25 views
Why is my VBO updated on 2nd click?
I have this method (InvertPolygonMesh) which basically takes an array (my VBO) and inverts all vertices along the Z axis. This method is directly invoked by the click of a button (IBAction). Now for ...
0
votes
1answer
46 views
Creating a 3D matrix with R?
I'm trying to build a 3D matrix by looping variables in a large data set (please see the 'head' of the data below). Specifically, I need to create a matrix with as many rows as the maximum number of ...
1
vote
1answer
30 views
Python: Can a 3d plot made from a list of data points have a gradient color scheme?
I have a list of points that are plotted in 3d, and I would like to have a gradient color scheme for the plot. Is this possible? If so, how can it be done? I tried some of the examples on the ...
0
votes
0answers
9 views
CSS3 3D transforms don't trigger when not active tab
I'm working on a website with CSS3 3D tranforms that are triggered with jquery. Essentially when any button is pressed, it loads some content with ajax, is hidden with jquery at first (using ...
0
votes
1answer
35 views
OpenGL mesh textures are flipped horizontally
I am working on a 3D renderer, and as I was loading various test models, I noticed that everything looked OK, except for the fact the the textures were all flipped on the x-axis.
This is actually ...
0
votes
0answers
10 views
Can a quaternion represent more than 360 degrees of rotation?
I like Euler rotation based on degrees so I can keyframe an animation of a large number of degrees, like 1000, and get multiple full 360-degree revolutions on the object for purposes of setting it ...
0
votes
2answers
21 views
Tool to generate parametric equations
I'm looking for a tool that allows me to create shapes (along the lines of a rendering application) which will also generate the parametric equations of the various shapes.
I need to use it for some ...
2
votes
1answer
19 views
What's vertex shading?
I am a beginner in polygon based computer graphics. Whatever I read I always come across the term vertex shading.
What is it? As far as I know vertices are the points where two edges of the polygon ...
-1
votes
1answer
31 views
How to set scene made with Three Js editor? [closed]
I used Three Js editor to make simple scene with mesh, It return to me the scene code below :
http://codepen.io/anon/pen/oIbEl
I would know how to insert it in my Js code?
Thanks for answer !
0
votes
0answers
7 views
Calculating Trajectories from Motion Capture Data
First of all, thank you for taking the time to read this post. I'm looking at calculating the trajectory of human body joints.
I have got a matrix which is 3x300 with each row representing the the ...
2
votes
2answers
44 views
points on a plane in 3D
I'm trying to figure out a way to move objects on a 3D plane that faces the camera using Unity3D. I want these objects to be constrained to the plane, which itself can move about in 3D space (the ...
0
votes
2answers
46 views
Plug-in display 3d-objects from VRML or X3D
I'm not sure that such plug-ins exist.. But my program displays the data that are easily convertible to VRML or X3D file, so it would be very convenient if I could display rendered by these files ...
0
votes
0answers
20 views
Move 3d body using keyboard
I want control model using arrays. I have code for now:
For rotation:
rotation=0.0f;
if(Gdx.input.isKeyPressed(Keys.A))
{
rotation += 80;
}else ...
0
votes
1answer
30 views
Half-edge data structure in Javascript?
I implemented half-edge data structure in C++ to generate topological connectivity of 3D objects from a soup of polygons. Its implementation needs features such as pointers, forward declarations etc.
...
0
votes
1answer
42 views
Gaussian Blur of 3D Data
I have a program in which I am querying all points included in a sphere S of radius R. The points are 3D points actually aligned on the vertices of a 3D regular grid, but I don't think this detail is ...
2
votes
2answers
90 views
Rotating shape moves together with the camera when agent moves
I created a 3D game where an agent can move in multiple directions (north,south...) .
It works okay ,but when I added another shape - pyramid - to the code , then when I
move the agent , the ...
0
votes
1answer
34 views
Matlab 3D plot plotting weird lines?
I have 3 arrays X, Y, Z that look something like this:
x = [1, 1, 1, 2, 2, 2, 3, 3, 3]
y = [1, 2, 3, 1, 2, 3, 1, 2, 3]
z = [1, 2, 3, 2, 4, 6, 3, 6, 9]
Then I am plotting these points with ...
1
vote
2answers
31 views
3d velocity field plotting in matlab
I need to plot a colored velocity field over a sphere in 3d. I'm looking for a function that looks similar to this:
f(X, Y, Z, V) Where X, Y, Z represent the 3d coordinates (3 dimensional matrices ...
-1
votes
0answers
38 views
Display 3D cube using jogl (opengl)
Edit:
I tried this tutorial about how to display a 3D cube.
I create this class -
public class JoglDemo implements GLEventListener, KeyListener {
static GLU glu = new GLU();
static ...
-1
votes
0answers
13 views
How to render a 3D interactive [closed]
Hello everyone I have been looking for tools and solution of how I can render a 3D model of a room in iphone.Is there any library that can do this OPEN GL?
2
votes
1answer
14 views
How can I replace the summing in numpy matrix multiplication with concatenation in a new dimension?
For each location in the result matrix, instead of storing the dot product of the corresponding row and column in the argument matrices, I would like like to store the element wise product, which will ...
1
vote
1answer
20 views
Find all the coordinates between two points (in 3d)
Point 1: 0, 0, 0
Point 2: 10, 10, 3
What I need is to figure out how to get all the coordinates in between the two points so for example it would output
0, 0, 0
0, 0, 1
0, 0, 2
0, 0, 3
0, 1, 0
0, ...
0
votes
1answer
19 views
Repeating Texture on Model/Mesh
When I just draw texture on SpriteBatch and set TextureWrap.Repeat everything is OK. But now I have 3D scene and I want have ground and texture must be repeated on model/mesh and this just don' t ...
0
votes
1answer
28 views
Interpreting object space coordinates of gluLookAt
I am trying to build a 3D scene here and read about viewing transformations with gluLookAt(); in OpenGL. The coordinates of gluLookAt() as I understand are in object space coordinates. I tried a small ...
0
votes
0answers
23 views
How To Get XAML GeometryVisual3D Coordinate On Screem (X, Y) Coordinate In Pixel [duplicate]
I am developing App using WPF with XAML 3D model and Kinect Gesture as the input command to do some animations on the 3D model like rotating.
I have a microwave model that has a door and also a hand ...
2
votes
2answers
41 views
fix rotate 3D object Perl code
I wrote this code using C++ example from net to rotate my set of points in 3D.
#@matrix is points and their 3D coordinates.
@rotated_matrix = rotate_l(\@matrix, 0);
sub rotate_l {
my $ref = $_[0];
...
1
vote
1answer
43 views
Compare two colors in an image + Which is best to draw 3D points
I know that it possible using the
GetPixel()
but is it possible to let the sw to decide which one is lighter or darker than the other.
I'm going to use a depthMap Image & I want to ...
-4
votes
2answers
42 views
Get image snapshot of the perspective projection of a 3D model [closed]
I have a 3D models in .fbx format. I need to add programmatically(.net, c#) an image(texture) to this model and get snapshot(image) of the result to display it on the website.
I'm going to use XNA or ...
4
votes
2answers
108 views
Occlusion culling 3D transformed 2D rectangles?
So, to start off, I'm not very good at computer graphics. I'm trying to implement a GUI toolkit where one of the features is being able to apply 3D transformations to 2D "layers". (a layer only has ...
0
votes
1answer
35 views
3D PerspectiveCamera Rendering Depth libgdx OpenGL ES 2.0
I seem to be having a problem getting libgdx to render things correctly. I render 2 colored triangles using the vertices:
Triangle 1(blue):
(-1.0f, 0.0f, -1.0f), (1.0f, 0.0f, -1.0f), (0.0f, 1.0f, ...
-4
votes
1answer
25 views
XNA - Any Good Tutorials on 3D? [closed]
Are there any good XNA 3D and 3D animation tutorials? If so please post a link for me. Thanks.
Since someone pointed out how it's vague and will give a lot of possible useless answers, I'll expand on ...
1
vote
2answers
59 views
animate 3d plot in matlab / octave
I'm trying to animate this spiral using matlab / octave I want it to spiral up or down
t = 0:0.1:10*pi;
r = linspace (0, 1, numel (t));
z = linspace (0, 1, numel (t));
plot3 (r.*sin(t), r.*cos(t), ...
0
votes
0answers
20 views
3D object in viewcontroller
Ok so heres what I want to do, I have an object I made in Blender and I want to put it in a viewcontroller and rotate it. Thats it. Shouldn't this be as easy as it is to put a .png image into a view ...
0
votes
2answers
52 views
.obj Models and normals
I been working on Three.js for a month now, mostly learning how it works and what can i do. Now, i'm trying to do a Car Expo by uploading .obj models of the cars. My problem is that some of the faces ...
0
votes
2answers
27 views
What libraries for interactive 3D model in Android AR app?
I'm asked to do an app with a 3D object mapped on a tag on the camera preview. The user should be able to rotate the 3D object on swipes, and to click on different area of the 3D object.
I'm ...
3
votes
1answer
47 views
Visualizing the 3D Structure of a Molecule in Matlab without using the Bioinformatics Toolbox
I'd like to produce a plot of a 3D structure of a molecule, using "balls and sticks". Matlab Bioinformatics Toolbox show's how to accomplish that (and more) using for example:
ubi = getpdb('1ubi');
...
0
votes
1answer
47 views
3D collision in OpenGL
I'm trying to create collision for my OpenGL application.
I have code that successfully tests whether my camera is inside my platform object:
void checkInsidePlatform()
{
float halfW = gymPlatform ...
-1
votes
0answers
18 views
adding objects to WPF viewport3d and manipulating the view
I want to create a 3d application using WPF where the user can input some coordinates for a rectangular prism (depth,width length) and location (top left corner) .the depth is always negative. the 3d ...
0
votes
0answers
10 views
PDF objects cover up form when loaded
I am really just putting together a proof of concept that involves passing information from a PDF object to a simple form in the HTML.
However, on a Windows 8 tablet, in IE (as far as I know IE is ...
0
votes
0answers
5 views
how to plot multidim array in matlab
I got a function of three parameters that I wanted to plot in matlab and I varied the values of the parameters (50 values for each parameter) for creating a multidimensional array 50x50x50. At first I ...
-1
votes
0answers
21 views
Selecting 3D objects in Android [closed]
i'm new in Android and I develop an 3D OpenGL game, where I have some objects and I need to identify which object was touched. I search a lot and I found a good idea:
...
0
votes
0answers
9 views
Is there any browser plugin or js library that allows rotate 3D DWG objects?
Have you seen somthing like this?
I tryed http://www.autodwg.com/dwg-viewer/dwgviewx.htm, but it seems it supports just 2D objects
Another problem is taht it should work under IE8.





