Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
rotation
- Page 1
Rotation
Programming
Software Development
20 Years Ago
by freesoft_2000
…. Here is the function that is responsible for the image
rotation
public BufferedImage imagerotate(BufferedImage SourceImage3, double Degrees1) { AffineTransform AT1 = new… be an ugly black rectangle behind the image after the
rotation
has taken place. I hope someone can help me with…
Rotation function works in 2D but fails in 3D
Programming
Software Development
12 Years Ago
by dot_binary
I'm tring to make 3D
rotation
of a poligon, I wrote my own functions for that.… = sin(((Ub-270)*PI)/180) * hkj ; } return Oy2 ; } - do the
rotation
in 3D: if( Ub2 > 359 ){ Ub2 = 0; } // Ub2 is…],object[1][2][1],20) + object[1][1][1] ; } The
rotation
is made around the objects origin.
Re: Rotation of images using javascript
Programming
Web Development
14 Years Ago
by Taywin
… even more... What is '
rotation
' in your meaning? Here are my definitions. 1.
Rotation
image means all display images…display [1] [2] [3] [4] [5] [6] first
rotation
: let say random1 is imageLocation3 and random2 is imageLocation1 [3…] [2] [1] [4] [5] [6] second
rotation
: let say random1 is imageLocation4 and random2 is imageLocation3 [3…
Re: Rotation of images using javascript
Programming
Web Development
14 Years Ago
by Taywin
…] [2] [5] [6] 1st
rotation
=> [3] [4] [9] [10] 2nd
rotation
=> [5] [6] [11] [2] 3rd
rotation
=> [7] [8] [1…] [4] 4th
rotation
=> [9] [10] [3…] [6] 5th
rotation
=> [11] [2] [5…
Re: Rotation of images using javascript
Programming
Web Development
14 Years Ago
by nikita.chandra
… last one.. initially [1][2][3] [4][5][6] 1st
rotation
[1.1][2][3.1] [4][5.1][6] 2nd…
rotation
[1.1][2.1][3.1] [4.1][5.1][…6.1] 3rd
rotation
[1.2][2.1][3.2] [4.1][5.2…
Re: Rotation of images using javascript
Programming
Web Development
14 Years Ago
by nikita.chandra
…] are not related with each other,they are independent for
rotation
. please solve my issue... it's very urgent... Thanks…
div coordinates skewed after rotation
Programming
Web Development
8 Years Ago
by Violet_82
…/7fbaf6a4b6f6140020d69bcf00526f0c.jpg "align-center") The
rotation
occurs when something (a div) is dropped …1bdcd04e25ab765c03629f3ed606208b.jpg "align-center") The
rotation
angle here is 0 so the left …right path please. Here is another scrennshot showing
rotation
on the other side:  * x Also, I recalculate the limts after the
rotation
so x would be the new distance between the weight…
Re: div coordinates skewed after rotation
Programming
Web Development
8 Years Ago
by Geoff_3
… your example) y is the distance from the weight, after
rotation
, to a vertical line running through the pivot point - from…
AVL Tree Rotation Problem
Programming
Software Development
14 Years Ago
by maikens
…} NodePtr BST::SingleLeftRotation(NodePtr &node) { // Create node to facilitate
rotation
of subtree NodePtr pivot = NULL; // Switch around pointers so the…subtree node = SingleRightRotation(node->right); // Then use single left
rotation
to finish balancing tree node = SingleLeftRotation(node); } void BST::…
Direct3D9 Sprite issues with rotation.
Programming
Game Development
15 Years Ago
by gotnoname
… fix_x; Matrix transform, scaling,
rotation
, translation; D3DXMatrixIdentity(& transform); // fix for
rotation
D3DXMatrixTranslation(& translation, -fix_x,… D3DXMatrixRotationZ(&
rotation
, D3DXToRadian(Surf->getRotationAngle() )); transform = transform * scaling *
rotation
; // move back after
rotation
D3DXMatrixTranslation(& …
Re: Simple 2D rotation problem
Programming
Software Development
13 Years Ago
by ZaaZ
…the length of the line varies throughout the
rotation
. Calling the function with an angle of +…will not rotate clockwise until an anti-clockwise
rotation
has been performed. If I rotate long …// ... lots of other stuff happening ... // user turret
rotation
input checks if(Keyboard.isPressed(GwinKeyNames::KZ)){ thePlyr.turret.Rotate…
Replacing truncate with partitions rotation
Programming
Databases
16 Years Ago
by gala22
… the one which implements the partitioning with partition
rotation
in order to avoid the possibility of any locking…for our case study) -- Now we do partition
rotation
and other relevant maintenance -- set variables to be …used in partition naming and
rotation
select to_char(v_today-1,'MMDDYY'), to_char(v_today+1,'MMDDYY…
Direct3D9 Sprites + rotation
Programming
Game Development
15 Years Ago
by gotnoname
… function looks like atm: [CODE=cplusplus]Matrix transform, scaling,
rotation
, translation; D3DXMatrixIdentity(& transform); D3DXMatrixScaling(& scaling, Surf…->getScaleRateX(), Surf->getScaleRateY(), 1.0f); D3DXMatrixRotationZ(&
rotation
, D3DXToRadian(Surf->getRotationAngle() )); Vector2D hotspot = Surf->…
Re: Object Rotation using Quaternions (XNA)
Programming
Game Development
14 Years Ago
by DaveTELFA
…// if key is pressed, change value of
rotation
if (keys.IsKeyDown(Keys.Right)) { leftrightRot … } // if key is pressed, change value of
rotation
if (keys.IsKeyDown(Keys.Left)) { leftrightRot = 0…
Re: Direct3D9 Sprite issues with rotation.
Programming
Game Development
15 Years Ago
by gotnoname
… Matrix such as D3DXTransformation2D function aswell as moving it before
rotation
/scaling and moving it back to finally move it where… of it at the same time, like this: transform = scale *
rotation
* translation. Anyone who has a clue as to what I…
Re: Direct3D9 Sprites + rotation
Programming
Game Development
15 Years Ago
by gotnoname
… centered, even though I move it to the hotspot before
rotation
. Anyone please give me some feedback, starting to loose patience… players hotspot seems to be like 32 pixels off when
rotation
happens. What I really want is for the position to…
Re: opengl rotation
Programming
Software Development
13 Years Ago
by mike_2000_17
…. What he is describing does not correspond to a
rotation
about the x axis. It seems to correspond to …the camera, meaning that when you apply a -90 degree
rotation
(of the world), it appears as if the camera …camera transformations are applied in reverse for that reason). 3D
rotation
transformations are very special and often counter-intuitive. It …
AVL Simple rotation: What's wrong with my code?
Programming
Software Development
14 Years Ago
by montjoile
… avl tree in C++, but I have problems with my
rotation
algorithm. I have try ALL the algorithms I could find… *avl; [/CODE] This is my implementation of the simple rigth
rotation
, which recieves a pointer of the node where is the… of the tree. *p will be replacing *fot in the
rotation
*q will be the left child of *fot, replacing *p…
Re: number rotation game :)
Programming
Software Development
16 Years Ago
by VernonDozier
… to make "solve" them (i.e. the proper
rotation
to make to solve them, represented perhaps as an integer… solved in two moves. Mark them solved and save which
rotation
produced them. Then take all of those orderings and do… solved, so mark them solved and keep track of what
rotation
produced them. And so on. For each ordering that's…
Banner Rotation
Programming
Web Development
15 Years Ago
by dwdata
… to work out a PHP page which establishes a sequenced
rotation
of ADS. Here is the code so far. There are… to the end of the list so thus causing a
rotation
. So if I start having these lines in my $_Session…
neat image rotation in vb6
Programming
Software Development
15 Years Ago
by neosonic
… that I need to use to make a smooth image
rotation
? (as smooth as windows image acquisition). I am currently have… am dealing with very intricate house plan. By using my
rotation
sub, the rotated image is pixelated with lacks of details…
Re: Object Rotation using Quaternions (XNA)
Programming
Game Development
14 Years Ago
by DaveTELFA
….World = Matrix.CreateScale(gameobject.scale) * Matrix.CreateFromYawPitchRoll(gameobject.
rotation
.X, gameobject.
rotation
.Y, gameobject.
rotation
.Z) * //Matrix.CreateFromQuaternion(cubeRotation) * Matrix.CreateTranslation(gameobject.position…
Re: opengl rotation
Programming
Software Development
13 Years Ago
by nuclear
… it looks like we are moving around even though its
rotation
should be 0. I get why translation remains in effect…, but not
rotation
. 3.If i do this: glRotatef(star[loop].angle,0… current star? Or i have to imagine as if the
rotation
was only made on that one star? i think the…
Re: opengl rotation
Programming
Software Development
13 Years Ago
by mike_2000_17
… it looks like we are moving around even though its
rotation
should be 0. I get why translation remains in effect…, but not
rotation
. Only the transformations up to the point in the code… current star? Or i have to imagine as if the
rotation
was only made on that one star? i think the…
Image rotation
Programming
Web Development
11 Years Ago
by solomon_13000
… google jquery library. The problem is that the image
rotation
stops at 5.jpg and doesn't go back to …
SDL Rotation
Programming
Software Development
11 Years Ago
by Nimerion
… is that I want to write a
rotation
method or function, that will calculate the
rotation
of a surface, but I failed…
3D rotation map
Programming
Web Development
11 Years Ago
by Isurindu
I created
Rotation
map like http://explore.glacierworks.org/en/#trek but it's have a problem in
rotation
. while rotating labels is not in correact possition.. this is [jsfiddle](http://jsfiddle.net/6738v/2/) sorry for bad english.. help me to solve this thank you
what's the best form of rotation data structures?
Programming
8 Years Ago
by Tcll
now I know your first thought is going to be
rotation
matrices, but take a moment to think about how they'… your monitor: X - width Y - height Z - depth now in
rotation
, this applies as such with a plane facing towards you…
Re: what's the best form of rotation data structures?
Programming
8 Years Ago
by Gribouillis
At the end of the wiki page on [
rotation
matrix](https://en.wikipedia.org/wiki/Rotation_matrix), there is a link to the [Rodrigues
rotation
formula](https://en.wikipedia.org/wiki/Rodrigues%27_rotation_formula). This could be what you're looking for.
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC