https://learnwebgl.brown37.net/07_cameras/camera_movement.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Eigen/SVD> | |
/// Method to find the average of a set of rotation quaternions using Singular Value Decomposition | |
/* | |
* The algorithm used is described here: | |
* https://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/20070017872.pdf | |
*/ | |
Eigen::Vector4f quaternionAverage(std::vector<Eigen::Vector4f> quaternions) | |
{ | |
if (quaternions.size() == 0) |
A string identifying the build system action being performed.
The locations of any sparse SDKs that should be layered on top of the one specified by Base SDK (SDKROOT
). If more than one SDK is listed, the first one has highest precedence. Every SDK specified in this setting should be a "sparse" SDK, for example, not an SDK for an entire macOS release.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kCVSMPTETimeType24 = 0; | |
kCVSMPTETimeType25 = 1; | |
kCVSMPTETimeType30Drop = 2; | |
kCVSMPTETimeType30 = 3; | |
kCVSMPTETimeType2997 = 4; | |
kCVSMPTETimeType2997Drop = 5; | |
kCVSMPTETimeType60 = 6; | |
kCVSMPTETimeType5994 = 7; | |
kCVSMPTETimeValid = (1 shl 0); | |
kCVSMPTETimeRunning = (1 shl 1); |