Split Personality User Controls.
-
Model - Actual Model - Visual Original - Transformed
GCS/GE d--(d) s-/+ a C+++ U+++ P-- L+@ E-- W+++ N+ o+ K- w+++ O? M-- V? PS+ PE Y+ PGP t+ 5? X R+++ tv-- b+(+++) DI+++ D++ G e++ h--- r+++ y+++* Weapons extension: ma- k++ F+2 X
I'm leaning that way. (actual and visual).
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
"Reference" , "Transformed" Below is my "Signature" apologies if offends My sympathies to the SPAM moderator "I once put instant coffee into the microwave and went back in time." - Steven Wright "Shut up and calculate" - apparently N. David Mermin possibly Richard Feynman “I want to sing, I want to cry, I want to laugh. Everything together. And jump and dance. The day has arrived — yippee!” - Desmond Tutu “When the green flag drops the bullshit stops!” "It is cheaper to save the world than it is to ruin it." "I must have had lessons" - Reverend Jim Ignatowski / Christopher Lloyd "Dripping water hollows out stone, not through force, but through persistence." - Ovid, Roman poet Personal Web Page https://mypaltrythoughts.blogspot.com/[^]
Very worthy of consideration. The reference control and its transformation.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
I though of a "rotated", but it isn't until it is. It has only potential at the start, unless you start rotated.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
Why are you not just working with an 'anchor' and a 'rotation'? That seems like it would be the simplest, unless I'm not understanding something. If the rotation is 0, the rotation is 0, and you don't care, but your nomenclature doesn't change. If the initial positioning can be rotated, and the change is an additional rotation, you I'd go with 'preTransformRotation' and 'postTransformRotation', or something like that.
Our Forgotten Astronomy | Object Oriented Programming with C++
-
User controls in UWP and WPF have a top, left, width and height; and an implied angle of zero degrees. So I can move them around by altering the top, left coordinates with code at run time. My user controls have "facings": front (top), back (bottom), left, right. I get to "face" them in different directions by rotating them around a center point. Rotating the controls has NO effect on the original coordinates (though the "visual" rotates), so I have to calculate (matrix transform) the rotated coordinates myself for collision detection etc.; and reference the original coordinates when I want to move. In effect, I almost wind up working with 2 controls at the same time; with only the center points in common. My OCD question is: what would you call the "first" user control versus the second, rotated one? I'm at "actual" and "visual" but not quite satisfied.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
Just make the height and width equal and you no longer have a problem with rotated elements overlapping! Follow me for all the best UI/UX practices! :)
If you can't laugh at yourself - ask me and I will do it for you.
It's one of those: it's great, except for ...
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
Why are you not just working with an 'anchor' and a 'rotation'? That seems like it would be the simplest, unless I'm not understanding something. If the rotation is 0, the rotation is 0, and you don't care, but your nomenclature doesn't change. If the initial positioning can be rotated, and the change is an additional rotation, you I'd go with 'preTransformRotation' and 'postTransformRotation', or something like that.
Our Forgotten Astronomy | Object Oriented Programming with C++
Don't know what you mean by "anchor". The controls are moving and can be rotating at the same time. Besides the "angle", the "visual" corner points also move when you rotate; but the actual corner points don't. You have to calculate the visuals yourself to "see" (in code) what's happening.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
-
Don't know what you mean by "anchor". The controls are moving and can be rotating at the same time. Besides the "angle", the "visual" corner points also move when you rotate; but the actual corner points don't. You have to calculate the visuals yourself to "see" (in code) what's happening.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
Gerry Schmitz wrote:
the "visual" corner points also move when you rotate; but the actual corner points don't.
Are you trying to say that the 'bounding box' size doesn't change? If that is the case, the 'anchor' point would be the center of the bounding box, unless you wanted to use another arbitrary position, such as a corner of the box. If that isn't what you mean, you will need to clarify your intent.
Our Forgotten Astronomy | Object Oriented Programming with C++
-
Just make the height and width equal and you no longer have a problem with rotated elements overlapping! Follow me for all the best UI/UX practices! :)
If you can't laugh at yourself - ask me and I will do it for you.
Perhaps I do not understand your suggestion. Consider two squares next to each other. Rotate either one or both 45 degrees. Will they not now overlap via the corners? - Best Below is my "Signature" apologies if offends My sympathies to the SPAM moderator "I once put instant coffee into the microwave and went back in time." - Steven Wright "Shut up and calculate" - apparently N. David Mermin possibly Richard Feynman “I want to sing, I want to cry, I want to laugh. Everything together. And jump and dance. The day has arrived — yippee!” - Desmond Tutu “When the green flag drops the bullshit stops!” "It is cheaper to save the world than it is to ruin it." "I must have had lessons" - Reverend Jim Ignatowski / Christopher Lloyd "Dripping water hollows out stone, not through force, but through persistence." - Ovid, Roman poet Personal Web Page https://mypaltrythoughts.blogspot.com/[^]
-
Perhaps I do not understand your suggestion. Consider two squares next to each other. Rotate either one or both 45 degrees. Will they not now overlap via the corners? - Best Below is my "Signature" apologies if offends My sympathies to the SPAM moderator "I once put instant coffee into the microwave and went back in time." - Steven Wright "Shut up and calculate" - apparently N. David Mermin possibly Richard Feynman “I want to sing, I want to cry, I want to laugh. Everything together. And jump and dance. The day has arrived — yippee!” - Desmond Tutu “When the green flag drops the bullshit stops!” "It is cheaper to save the world than it is to ruin it." "I must have had lessons" - Reverend Jim Ignatowski / Christopher Lloyd "Dripping water hollows out stone, not through force, but through persistence." - Ovid, Roman poet Personal Web Page https://mypaltrythoughts.blogspot.com/[^]
-
My reply was a joke but I have to ask. Why would you want to partially rotate controls?
If you can't laugh at yourself - ask me and I will do it for you.
I missed the joke. Thank You for clarification. As to rotation I of course have no idea as it is not my control. However in my next project I am looking forward to considering animated controls even perhaps 3D. - Best