旋转文本并不改变文本在处理中的位置。

huangapple go评论90阅读模式
英文:

Rotating text not the position of the text in processing

问题

我正在尝试制作一个时钟,并且希望所有的数字都处于正确的位置,但它们都被旋转了,例如6被倒置,而12是正确的。有没有办法只旋转文本,而不改变文本的位置?

我的代码是:

  1. push();
  2. textSize(48);
  3. for (int i = 1; i < 13; i++) {
  4. int offset = -15;
  5. if (str(i).length() == 2) {
  6. offset -= 14.5;
  7. }
  8. rotate(radians(30));
  9. text(i, offset, -350);
  10. //println(i*30);
  11. }
  12. pop();
英文:

i am trying to make a clock and have all the numbers in the correct place but they are all rotated e.g. 6 is upside down whereas 12 is correct. is there anyway to rotate just the text not the position of the text?

my code is

  1. push();
  2. textSize(48);
  3. for (int i = 1; i &lt; 13; i++) {
  4. int offset = -15;
  5. if (str(i).length() == 2) {
  6. offset -= 14.5;
  7. }
  8. rotate(radians(30));
  9. text(i, offset, -350);
  10. //println(i*30);
  11. }
  12. pop();

答案1

得分: 8

未看代码,我的直觉是你使用了 rotate() 函数,但可能你没有使用 pushMatrix()/popMatrix(); 来将坐标空间隔离到本地空间,以便可以临时旋转。

我建议阅读 2D 变换教程

正如教程所提到的,变换的顺序很重要:

  1. size(300, 300);
  2. background(0);
  3. stroke(255);
  4. // 文本居中对齐
  5. textAlign(CENTER);
  6. // 将全局坐标原点移动到画布中心
  7. translate(width / 2, height / 2);
  8. int hours = 12;
  9. // 每个小时的角度部分(360/12 = 30 度),但以弧度表示
  10. float angleIncrement = TWO_PI / hours;
  11. // 距中心的距离
  12. float radius = 100;
  13. for (int i = 0; i < hours; i++) {
  14. // 计算每个小时的角度,减去一些角度,因为角度 0 指向右侧,而不是顶部(12 点钟)
  15. // 记住这个偏移量:在绘制时钟指针时可能会有帮助 ;)
  16. float angle = (angleIncrement * i) - (QUARTER_PI * 4/3);
  17. // 隔离坐标空间
  18. pushMatrix();
  19. // 以全局中心为基准,按照每小时的角度旋转
  20. rotate(angle);
  21. // 从局部旋转后的中心位置平移,基于半径
  22. translate(radius, 0);
  23. // 撤销局部旋转,使文本保持水平
  24. rotate(-angle);
  25. // 绘制文本
  26. text(i+1, 0, 0);
  27. // 退出局部坐标系统,回到全局坐标
  28. popMatrix();
  29. }

下面是一个带有帮助函数的示例,用于可视化坐标系统:

  1. void setup() {
  2. // ...(略去部分代码,与上面的示例相似)
  3. }
  4. void drawCoordinateSystem(String label, float size, float alpha) {
  5. // ...(略去部分代码,与上面的示例相似)
  6. }

请注意,对于 pushMatrix()/popMatrix(),不需要缩进,这只是一种视觉提示,有助于在阅读代码时记住坐标系统的嵌套。

这部分以下的代码是一些过于复杂的演示,您可能不需要,但希望它能够提供一些有趣的可视化效果。

注:此处省略了一些代码,仅返回翻译内容。

英文:

Without seeing the code my hunch is you use rotate(), but probably you don't use pushMatrix()/popMatrix(); to isolate the coordinate space to local one that can be temporarily rotated.

I recommend reading the 2D Transformations tutorial

旋转文本并不改变文本在处理中的位置。

As the tutorial mentions, the order of transformations matters:

  1. size(300, 300);
  2. background(0);
  3. stroke(255);
  4. // center align text
  5. textAlign(CENTER);
  6. // global translation to center
  7. translate(width / 2, height / 2);
  8. int hours = 12;
  9. // an angle section (360/12 = 30 degrees), but in radians
  10. float angleIncrement = TWO_PI / hours;
  11. // distance from center
  12. float radius = 100;
  13. for(int i = 0 ; i &lt; hours; i++){
  14. // calculate the angle for each hour, subtracting a bit because angle 0 points to the right, not top (12 o&#39;clock)
  15. // remember this offset: it may come in handy when drawing clock handles ;)
  16. float angle = (angleIncrement * i) - (QUARTER_PI * 4/3);
  17. // isolate coordinate space
  18. pushMatrix();
  19. // rotate from global center by each hour angle
  20. rotate(angle);
  21. // translate from locally rotated center based on radius
  22. translate(radius, 0);
  23. // undo local rotation so text is straight
  24. rotate(-angle);
  25. // render text
  26. text(i+1,0,0);
  27. // exit local coordinate system, back to global coordinates after this
  28. popMatrix();
  29. }

Here is the same example with a helper function to help visualise the coordinate systems:

  1. void setup() {
  2. size(300, 300);
  3. background(0);
  4. stroke(255);
  5. // center align text
  6. textAlign(CENTER);
  7. drawCoordinateSystem(&quot;1.original cooordinates&quot;,60, 255);
  8. // global translation to center
  9. translate(width / 2, height / 2);
  10. drawCoordinateSystem(&quot;2.global center&quot;,60, 64);
  11. int hours = 12;
  12. // an angle section (360/12 = 30 degrees), but in radians
  13. float angleIncrement = TWO_PI / hours;
  14. // distance from center
  15. float radius = 100;
  16. for (int i = 0; i &lt; hours; i++) {
  17. // calculate the angle for each hour, subtracting a bit because angle 0 points to the right, not top (12 o&#39;clock)
  18. // remember this offset: it may come in handy when drawing clock handles ;)
  19. float angle = (angleIncrement * i) - (QUARTER_PI * 4/3);
  20. // isolate coordinate space
  21. pushMatrix();
  22. // rotate from global center by each hour angle
  23. rotate(angle);
  24. if(i == 0){
  25. drawCoordinateSystem(&quot;3.local+rotation&quot;,60, 127);
  26. }
  27. // translate from locally rotated center based on radius
  28. translate(radius, 0);
  29. if(i == 0){
  30. drawCoordinateSystem(&quot;4.local+rot.+\ntrans.&quot;,60, 192);
  31. }
  32. // undo local rotation so text is straight
  33. rotate(-angle);
  34. if(i == 0){
  35. drawCoordinateSystem(&quot;\n5.prev.\n-rot.&quot;,60, 255);
  36. }
  37. // render text
  38. text(i+1, 0, 0);
  39. // exit local coordinate system, back to global coordinates after this
  40. popMatrix();
  41. }
  42. }
  43. void drawCoordinateSystem(String label, float size, float alpha){
  44. pushStyle();
  45. textAlign(LEFT);
  46. strokeWeight(3);
  47. // x axis
  48. stroke(192, 0, 0, alpha);
  49. line(0, 0, size, 0);
  50. // y axis
  51. stroke(0, 192, 0, alpha);
  52. line(0, 0, 0, size);
  53. text(label, 10, 15);
  54. popStyle();
  55. }

旋转文本并不改变文本在处理中的位置。

Note that the indent is not required for pushMatrix()/popMatrix(), it's more of a visual cue to aid when you read code to remember coordinate system nesting.

This is over the top and you won't need the code bellow, but hopefully it's a fun visualisation:

  1. PImage screenshot;
  2. String[] labels = {&quot;1.original cooordinates&quot;,&quot;2.global center\ntranslate(width / 2, height / 2)&quot;,
  3. &quot;3.local+rotation\npushMatrix();\nrotate(angle)&quot;,
  4. &quot;4.local+rot.+\ntrans.\ntranslate(radius, 0)&quot;,&quot;5.previous-rot.\nrotate(-angle)&quot;,&quot;&quot;};
  5. PMatrix2D[] systems = new PMatrix2D[labels.length];
  6. PMatrix2D lerpMatrix = new PMatrix2D();
  7. void setup() {
  8. size(300, 300);
  9. background(0);
  10. stroke(255);
  11. // center align text
  12. textAlign(CENTER);
  13. // &quot;1.original cooordinates&quot;
  14. systems[0] = new PMatrix2D();
  15. // global translation to center
  16. translate(width / 2, height / 2);
  17. // &quot;2.global center&quot;
  18. systems[1] = systems[0].get();
  19. systems[1].translate(width / 2, height / 2);
  20. int hours = 12;
  21. // an angle section (360/12 = 30 degrees), but in radians
  22. float angleIncrement = TWO_PI / hours;
  23. // distance from center
  24. float radius = 100;
  25. for (int i = 0; i &lt; hours; i++) {
  26. // calculate the angle for each hour, subtracting a bit because angle 0 points to the right, not top (12 o&#39;clock)
  27. // remember this offset: it may come in handy when drawing clock handles ;)
  28. float angle = (angleIncrement * i) - (QUARTER_PI * 4/3);
  29. // isolate coordinate space
  30. pushMatrix();
  31. // rotate from global center by each hour angle
  32. rotate(angle);
  33. if(i == 0){
  34. // &quot;3.local+rotation&quot;
  35. PMatrix2D local = new PMatrix2D();
  36. local.apply(systems[1]);
  37. local.rotate(angle);
  38. systems[2] = local.get();
  39. }
  40. // translate from locally rotated center based on radius
  41. translate(radius, 0);
  42. if(i == 0){
  43. // &quot;4.local+rot.+\ntrans.&quot;
  44. systems[3] = systems[2].get();
  45. systems[3].translate(radius,0);
  46. }
  47. // undo local rotation so text is straight
  48. rotate(-angle);
  49. if(i == 0){
  50. // &quot;\n5.prev.\n-rot.&quot;
  51. systems[4] = systems[3].get();
  52. systems[4].rotate(-angle);
  53. systems[5] = systems[4];
  54. }
  55. // render text
  56. text(i+1, 0, 0);
  57. // exit local coordinate system, back to global coordinates after this
  58. popMatrix();
  59. }
  60. screenshot = get();
  61. }
  62. void draw(){
  63. image(screenshot,0, 0);
  64. animateCoordinateSystems();
  65. text(&quot;mouse mouse on X axis&quot;, width / 2, height - 12);
  66. }
  67. void animateCoordinateSystems(){
  68. float mapping = map(constrain(mouseX, 0, width), 0, width, 0.0, 1.0);
  69. float globalT = (float)(labels.length -1) * mapping;
  70. int index = (int)globalT;
  71. float localT = globalT - index;
  72. lerpMatrix(systems[index], systems[index+1], localT, lerpMatrix);
  73. pushMatrix();
  74. applyMatrix(lerpMatrix);
  75. drawCoordinateSystem(labels[index] + (labels[index+1].length() &gt; 0 ? &quot;\ntransitions to\n&quot; + labels[index+1] : &quot;&quot;),60, 255);
  76. popMatrix();
  77. }
  78. void lerpMatrix(PMatrix2D from, PMatrix2D to, float t, PMatrix2D result){
  79. result.m00 = lerp(from.m00, to.m00, t);
  80. result.m01 = lerp(from.m01, to.m01, t);
  81. result.m02 = lerp(from.m02, to.m02, t);
  82. result.m10 = lerp(from.m10, to.m10, t);
  83. result.m11 = lerp(from.m11, to.m11, t);
  84. result.m12 = lerp(from.m12, to.m12, t);
  85. }
  86. void drawCoordinateSystem(String label, float size, float alpha){
  87. pushStyle();
  88. textAlign(LEFT);
  89. strokeWeight(3);
  90. // x axis
  91. stroke(192, 0, 0, alpha);
  92. line(0, 0, size, 0);
  93. // y axis
  94. stroke(0, 192, 0, alpha);
  95. line(0, 0, 0, size);
  96. text(label, 10, 15);
  97. popStyle();
  98. }

旋转文本并不改变文本在处理中的位置。

huangapple
  • 本文由 发表于 2020年9月24日 04:09:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/64035544.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定