Get new position of coordinate after rotation with Matrix(使用Matrix旋转后获取新坐标位置)
本文介绍了使用Matrix旋转后获取新坐标位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想知道如何使用矩阵在旋转后获取矩形内坐标的新位置.我想做的是:
I'm wondering how to use a Matrix to get the new position of a coordinate within a rectangle after rotation. What I would like to do is:
- 定义一个矩形
- 在该矩形内定义一个坐标
- 旋转矩形
- 获取旋转后坐标的新位置
我想不通的部分是 2 &4.有什么想法吗?
The parts I can't figure out are 2 & 4. Any ideas?
推荐答案
我为此创建了一个简单的 Demo.它有一些额外的东西,所以你也可以在绘图中看到如何使用它.
I have created a simple Demo for this. It has a little extra, so you can also see how to use this in Drawing.
main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
还有活动:
package nl.entreco.android.testrotation;
import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Rect;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.RelativeLayout;
import android.widget.SeekBar;
import android.widget.SeekBar.OnSeekBarChangeListener;
public class RotationActivity extends Activity implements OnSeekBarChangeListener {
private MyDrawing myDrawing;
private SeekBar mSeekbar;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Rect rect = new Rect(150,150,440,630);
int x = (int) (rect.left + Math.random() * rect.width());
int y = (int) (rect.top + Math.random() * rect.height());
Point coordinate = new Point(x, y);
// To draw the rect we create a CustomView
myDrawing = new MyDrawing(this, rect, coordinate);
RelativeLayout rl = (RelativeLayout)findViewById(R.id.container);
rl.addView(myDrawing);
mSeekbar = (SeekBar)findViewById(R.id.seekBar1);
mSeekbar.setMax(360);
mSeekbar.setOnSeekBarChangeListener(this);
}
private class MyDrawing extends View
{
private Rect myRect;
private Point myPoint;
private Paint rectPaint;
private Paint pointPaint;
private Matrix transform;
public MyDrawing(Context context, Rect rect, Point point)
{
super(context);
// Store the Rect and Point
myRect = rect;
myPoint = point;
// Create Paint so we can see something :)
rectPaint = new Paint();
rectPaint.setColor(Color.GREEN);
pointPaint = new Paint();
pointPaint.setColor(Color.YELLOW);
// Create a matrix to do rotation
transform = new Matrix();
}
/**
* Add the Rotation to our Transform matrix.
*
* A new point, with the rotated coordinates will be returned
* @param degrees
* @return
*/
public Point rotate(float degrees)
{
// This is to rotate about the Rectangles center
transform.setRotate(degrees, myRect.exactCenterX(), myRect.exactCenterY());
// Create new float[] to hold the rotated coordinates
float[] pts = new float[2];
// Initialize the array with our Coordinate
pts[0] = myPoint.x;
pts[1] = myPoint.y;
// Use the Matrix to map the points
transform.mapPoints(pts);
// NOTE: pts will be changed by transform.mapPoints call
// after the call, pts will hold the new cooridnates
// Now, create a new Point from our new coordinates
Point newPoint = new Point((int)pts[0], (int)pts[1]);
// Return the new point
return newPoint;
}
@Override
public void onDraw(Canvas canvas)
{
if(myRect != null && myPoint != null)
{
// This is an easy way to apply the same transformation (e.g. rotation)
// To the complete canvas.
canvas.setMatrix(transform);
// With the Canvas being rotated, we can simply draw
// All our elements (Rect and Point)
canvas.drawRect(myRect, rectPaint);
canvas.drawCircle(myPoint.x, myPoint.y, 5, pointPaint);
}
}
}
@Override
public void onProgressChanged(SeekBar seekBar, int progress,boolean fromUser) {
Point newCoordinates = myDrawing.rotate(progress);
// Now -> our float[] pts contains the new x,y coordinates
Log.d("test", "Before Rotate myPoint("+newCoordinates.x+","+newCoordinates.y+")");
myDrawing.invalidate();
}
@Override
public void onStartTrackingTouch(SeekBar seekBar) {}
@Override
public void onStopTrackingTouch(SeekBar seekBar) {}
}
这篇关于使用Matrix旋转后获取新坐标位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:使用Matrix旋转后获取新坐标位置
基础教程推荐
猜你喜欢
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01