0
votes
2answers
43 views

Rounded Plane In THREE JS

THREE JS, can often seem angular and straight edged. I haven't used it for very long and thus am struggling to understand how to curve the world so to speak. I would imagine a renderer or something ...
7
votes
1answer
1k views

Perspective transform of SVG paths (four corner distort)

How is it possible to distort paths in SVG in browser so that they are distorted to certain perspective using possibly javascript or css? The perspective distort can be made easily in Photoshop, ...
0
votes
1answer
750 views

EaselJS perspective image transformation

Is it possible to make perspective image transformation in html5 canvas? I am using EaselJS right now and can't find a solution for my need.
0
votes
2answers
544 views

creating perspective objects with jquery

How is it possible to create for example an object with perspective. For example: http://www.spaceslide.co.uk/design-your-own.php?stage=5 In step 5 you can see the sliding wardrobe. If you want, you ...
6
votes
4answers
4k views

JavaScript / HTML highlighting / debugging in Eclipse using PhoneGap

I am writing an app using PhoneGap for Android in Eclipse. Since the project is an Android project, it's in a Java perspective. For whatever reason, Eclipse won't highlight HTML and JavaScript for ...
0
votes
2answers
167 views

OpenGL vector projection inaccurate

I'm creating the perspective projection like this: function quickViewMatrix( pos, center, w, h ) { var modelview = mat4.create(); mat4.lookAt( pos, center, [ 0, 0, 1 ], modelview ); var ...
13
votes
1answer
826 views

Calculate absolute dimensions of a div rotated in perspective with css3

lets say we have a div with 500x500px size and we rotate it on the x axis via css 45 degrees considering a webkit-perspective value of 1600px. How would you calculate the absolute dimensions of the ...
1
vote
2answers
2k views

Basics of 3d to draw Rubik's Cube

I'd like to draw a Rubik's Cube on html canvas element with some perspective, but I've never had any experience with 3d graphics, perspective etc. so I'm looking for all helpful resources to achieve ...
6
votes
2answers
8k views

Can you do an isometric perspective with HTML5 <canvas>?

It is possible to do an isometric perspective with HTML5 <canvas>? It is with setTransform? Or does it exist another way? Example: ctxt.setTransform (1, -0.2, 0, 1, 0, 0); Something like the ...
12
votes
2answers
5k views

Mode7-like perspective transform in canvas?

I'm making a canvas-based game engine and am wondering if anyone has any good info on how to achieve an overhead view perspective. What I'm looking for is somewhere halfway between the traditional ...
1
vote
2answers
293 views

How to determine Z-order when drawing in a one-point perspective?

I'm trying to make a simple javascript that draws rectangles on a canvas, then draws the side faces based on a one-point perspective. The problem is, the amount of rectangles and their positioning is ...