约 50 个结果
在新选项卡中打开链接
  1. flash - Reflection of a Point over a Line - Stack Overflow

    2011年8月6日 · I have been looking at how to reflect a point in a line, and found this question which seems to do the trick, giving this formula to calculate the reflected point: Given (x,y) and …

  2. How to reflect a line over another line - Stack Overflow

    2013年7月1日 · For a collision algorithm I am developing, I need to find out how to reflect a line over another. Line 1: y=ax+b Line 2: y=cx+d Line 3: (a result of reflecting line 1 over line 2) …

  3. Reflect a object along x and y axis - Stack Overflow

    2014年3月14日 · That is really a specific example of reflection over a line, where the line happens to be the x axis. (ie y = 0x + 0) If you want to reflect over another line, you can use a matrix. …

  4. Algorithm for reflecting a point across a line - Stack Overflow

    2010年7月22日 · Given a point (x1, y1) and an equation for a line (y=mx+c), I need some pseudocode for determining the point (x2, y2) that is a reflection of the first point across the …

  5. How to reflect an angle across the Y axis - Stack Overflow

    2011年8月24日 · How to reflect an angle across the Y axis Asked 15 years, 3 months ago Modified 14 years, 1 month ago Viewed 18k times

  6. math - Reflecting Angles in the Y Axis - Stack Overflow

    2010年12月29日 · I'm currently to reflect an angle in the Y axis using 'Pi - angle'. The angle system I'm using is in radians, with 0 being east, -Pi/2 being north, Pi/2 being south and +/- Pi …

  7. math - Reflection? How do I do it? - Stack Overflow

    You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I …

  8. Reflect coordinaties in method over y-axis java - Stack Overflow

    2013年4月10日 · I wanted to know how can I (also if it would be correct) reflect my coords over the y-axis. Mathematically we can do this by multipling all x values by -1. This way I don't have …

  9. How to calculate the mirror point along a line? - Stack Overflow

    2012年1月21日 · Alternatively, you can use an approach based on finding the actual closest point N on line L and then reflecting your point P with relation to N. This is already suggested in …

  10. matlab - Reflected array across a diagonal - Stack Overflow

    2017年2月21日 · I want to create an array i times i. So I do the following: reflect = zeros(i, i); Now, I want to produce an array that contains numbers that reflect along the main diagonal. If i=5, it …