├── .gitignore ├── .tfignore ├── Data └── hand1.skel ├── Htouch ├── ConsolePrinter.cpp ├── ConsolePrinter.h ├── Global.h ├── Hand.cpp ├── Hand.h ├── HandElem.cpp ├── HandElem.h ├── HandProjector.cpp ├── HandProjector.h ├── Htouch.cpp ├── Htouch.h ├── Htouch.rc ├── Htouch.vcxproj ├── Htouch.vcxproj.filters ├── HtouchDlg.cpp ├── HtouchDlg.h ├── ShowModelPanel.cpp ├── ShowModelPanel.h ├── Tokenizer.cpp ├── Tokenizer.h ├── Tree.cpp ├── Tree.h ├── camera.cpp ├── camera.h ├── res │ ├── Htouch.ico │ └── Htouch.rc2 ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── MathUtilities ├── EulerAngles.cpp ├── EulerAngles.h ├── Geometry.cpp ├── Geometry.h ├── Global.h ├── MathUtilities.vcxproj ├── MathUtilities.vcxproj.filters ├── Matrix.cpp ├── Matrix.h ├── Matrix33.cpp ├── Matrix33.h ├── Matrix44.cpp ├── Matrix44.h ├── Quaternion.cpp ├── Quaternion.h ├── Statistics.cpp ├── Statistics.h ├── Vector3.cpp ├── Vector3.h ├── Vector4.cpp ├── Vector4.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── QuadHandViewer.sln ├── ReadMe.md └── res ├── Htouch.rc ├── Htouch.rc2 └── favicon.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/.gitignore -------------------------------------------------------------------------------- /.tfignore: -------------------------------------------------------------------------------- 1 | \.git -------------------------------------------------------------------------------- /Data/hand1.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Data/hand1.skel -------------------------------------------------------------------------------- /Htouch/ConsolePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/ConsolePrinter.cpp -------------------------------------------------------------------------------- /Htouch/ConsolePrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/ConsolePrinter.h -------------------------------------------------------------------------------- /Htouch/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Global.h -------------------------------------------------------------------------------- /Htouch/Hand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Hand.cpp -------------------------------------------------------------------------------- /Htouch/Hand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Hand.h -------------------------------------------------------------------------------- /Htouch/HandElem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HandElem.cpp -------------------------------------------------------------------------------- /Htouch/HandElem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HandElem.h -------------------------------------------------------------------------------- /Htouch/HandProjector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HandProjector.cpp -------------------------------------------------------------------------------- /Htouch/HandProjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HandProjector.h -------------------------------------------------------------------------------- /Htouch/Htouch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Htouch.cpp -------------------------------------------------------------------------------- /Htouch/Htouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Htouch.h -------------------------------------------------------------------------------- /Htouch/Htouch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Htouch.rc -------------------------------------------------------------------------------- /Htouch/Htouch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Htouch.vcxproj -------------------------------------------------------------------------------- /Htouch/Htouch.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Htouch.vcxproj.filters -------------------------------------------------------------------------------- /Htouch/HtouchDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HtouchDlg.cpp -------------------------------------------------------------------------------- /Htouch/HtouchDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/HtouchDlg.h -------------------------------------------------------------------------------- /Htouch/ShowModelPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/ShowModelPanel.cpp -------------------------------------------------------------------------------- /Htouch/ShowModelPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/ShowModelPanel.h -------------------------------------------------------------------------------- /Htouch/Tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Tokenizer.cpp -------------------------------------------------------------------------------- /Htouch/Tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Tokenizer.h -------------------------------------------------------------------------------- /Htouch/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Tree.cpp -------------------------------------------------------------------------------- /Htouch/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/Tree.h -------------------------------------------------------------------------------- /Htouch/camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/camera.cpp -------------------------------------------------------------------------------- /Htouch/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/camera.h -------------------------------------------------------------------------------- /Htouch/res/Htouch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/res/Htouch.ico -------------------------------------------------------------------------------- /Htouch/res/Htouch.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/res/Htouch.rc2 -------------------------------------------------------------------------------- /Htouch/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/resource.h -------------------------------------------------------------------------------- /Htouch/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/stdafx.cpp -------------------------------------------------------------------------------- /Htouch/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/stdafx.h -------------------------------------------------------------------------------- /Htouch/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/Htouch/targetver.h -------------------------------------------------------------------------------- /MathUtilities/EulerAngles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/EulerAngles.cpp -------------------------------------------------------------------------------- /MathUtilities/EulerAngles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/EulerAngles.h -------------------------------------------------------------------------------- /MathUtilities/Geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Geometry.cpp -------------------------------------------------------------------------------- /MathUtilities/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Geometry.h -------------------------------------------------------------------------------- /MathUtilities/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Global.h -------------------------------------------------------------------------------- /MathUtilities/MathUtilities.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/MathUtilities.vcxproj -------------------------------------------------------------------------------- /MathUtilities/MathUtilities.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/MathUtilities.vcxproj.filters -------------------------------------------------------------------------------- /MathUtilities/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix.cpp -------------------------------------------------------------------------------- /MathUtilities/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix.h -------------------------------------------------------------------------------- /MathUtilities/Matrix33.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix33.cpp -------------------------------------------------------------------------------- /MathUtilities/Matrix33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix33.h -------------------------------------------------------------------------------- /MathUtilities/Matrix44.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix44.cpp -------------------------------------------------------------------------------- /MathUtilities/Matrix44.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Matrix44.h -------------------------------------------------------------------------------- /MathUtilities/Quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Quaternion.cpp -------------------------------------------------------------------------------- /MathUtilities/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Quaternion.h -------------------------------------------------------------------------------- /MathUtilities/Statistics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Statistics.cpp -------------------------------------------------------------------------------- /MathUtilities/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Statistics.h -------------------------------------------------------------------------------- /MathUtilities/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Vector3.cpp -------------------------------------------------------------------------------- /MathUtilities/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Vector3.h -------------------------------------------------------------------------------- /MathUtilities/Vector4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Vector4.cpp -------------------------------------------------------------------------------- /MathUtilities/Vector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/Vector4.h -------------------------------------------------------------------------------- /MathUtilities/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/stdafx.cpp -------------------------------------------------------------------------------- /MathUtilities/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/stdafx.h -------------------------------------------------------------------------------- /MathUtilities/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/MathUtilities/targetver.h -------------------------------------------------------------------------------- /QuadHandViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/QuadHandViewer.sln -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/ReadMe.md -------------------------------------------------------------------------------- /res/Htouch.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/res/Htouch.rc -------------------------------------------------------------------------------- /res/Htouch.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/res/Htouch.rc2 -------------------------------------------------------------------------------- /res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shrekei/QuadricHandModel/HEAD/res/favicon.ico --------------------------------------------------------------------------------