Skip to content

Latest commit

 

History

History
73 lines (49 loc) · 2.41 KB

Camera.md

File metadata and controls

73 lines (49 loc) · 2.41 KB

Camera

This section is full of things about mathematics. We just need a QML type to handle camera calculations, there it is, the Camera QML type. But we can DIY fully because it is just math, aha?

Qt has covered what glm could provided for us:

vector, matrix, quaternion...

Read the examples and documents to unleash your power.

Tips:

  • Hey, quaternion in QML sucks! I have ported one copy of my javascript geometry library in geo.js for convenience.
  • The Qt3D internal Camera type will be introduced in the next article.

Remember FrameSwap? It's true type is FrameAction, the event between frames. We should always adjust geometries and handle physics here.

Tips:

FrameAction support dt internally, we just calculate FPS by this argument.

Use MouseHandler the way you do to MouseArea, modifiers can be passed into mouse event, try to press Shift for accurate aiming. Need zoom for touchscreen? You may need an outer PinchArea.

To keep upVector up you need to decompose rotation into two axes(yaw and pitch):

	qx = qx.times(rx);
	qy = qy.times(ry);
	quaternion = qx.times(qy)

It is more easy to create rotation in quaternion and there is difference with Euler angle, for example you no longer need to lookAt!

	var translation = Qt.matrix4x4();
	translation.m14 = -position.x;
	translation.m24 = -position.y;
	translation.m34 = -position.z;
	viewMatrix = quaternion.conjugated().toMatrix()
		.toQtType().times(translation);

Try and you can tell it.

You may enjoy the world you can not fly but infinite jump!