This file contains hidden or 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
<html> | |
<head> | |
<title>Raycaster test</title> | |
<style> | |
body { margin: 0; } | |
canvas { width: 100%; height: 100% } | |
</style> | |
</head> | |
<body> | |
<script src="http://threejs.org/build/three.min.js"></script> |
This file contains hidden or 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
#ifndef RTTRQHASH_H | |
#define RTTRQHASH_H | |
#include <QHash> | |
#include <rttr/type.h> | |
#include <new> | |
namespace rttr | |
{ |
This file contains hidden or 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 <rttr/registration> | |
#include <iostream> | |
enum class TestEnum { First = 1, Second = 2 }; | |
RTTR_REGISTRATION | |
{ | |
using namespace rttr; | |
registration::enumeration<TestEnum>("TestEnum") | |
( |