Tagged Questions
The z-axis tag has no wiki summary.
11
votes
8answers
15k views
Layering images in CSS - possible to put 2 images in same element?
Supposing I'm setting a background image for a web page in CSS like this:
body {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: Verdana, Arial, Sans-Serif;
background-color: #9D5922;
...
9
votes
2answers
9k views
Programmatically send to front/back elements created from interface builder
In interface builder, there are layouts options to send to back or send to front any elements such as UIButton, UIImage, UILabel etc...
Now, I would like to do the same at runtime, programmatically.
...
6
votes
2answers
2k views
Android - Layout Layers? Z-Axis?
I have seen numerous applications that use layering in their layouts. When I speak of layering I am referring to layers in the z-axis relative to the view of the user. One such app is the Craigslist ...
1
vote
1answer
83 views
Matlab how to change contourf plot's location on z axis
I have a 3d surface in my figure surf(x,y,z)
I also have a contourf surface (which is basically a 2D plane).
I plot them in the same figure but the contourf plot is automatically at z=0 level. I ...
1
vote
1answer
442 views
How to make a image spin/rotate around the z axis
I would like to spin/rotate my Logo(Image) on the Z axis.
This is the code i have so far:
<Image Name="logo" Grid.Row="1" Grid.Column="0" Source="someLogoPath" Width="140" Height="140" ...
0
votes
0answers
67 views
Rotating an image along the y-axis Transform to duplicate “folder Icons in explorer”
I would like to take an image and rotate it along the z axis.. I know how to rotate an image like 20 degrees to the right... no problem.. I would like to also tilt the image backwards, similar to how ...
0
votes
3answers
274 views
Drawing line under view in android
I am using the onDispatchDraw(Canvas canvas) method to draw lines in my view. When I call canvas.drawLine() it always draws the line on top of all my views. Is there any way to draw the line under a ...
0
votes
2answers
75 views
How do I put things above an mx:HTML element?
How do I put things above an mx:HTML element? No matter where I place the code it's always under the <mx:HTML> element. Can this even be done?
Example:
<mx:Canvas x="50" y="50" width="50" ...
0
votes
2answers
2k views
Using HTML5 canvas with the z axis? And how to move the canvas eye view? {Please Help me I have a deadline that ends very soon}
Hey all how do you use the z axis when drawing and moving a model?
I have the following:
var canvas = {
obj: document.querySelector("canvas"),
models: [{
start: [10, 10, 10],
...