Last active
January 11, 2017 18:52
-
-
Save bfgeek/08e663c900bf6a0704931b04700272f0 to your computer and use it in GitHub Desktop.
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
| interface VRAnchor { | |
| readonly attribute VRCoordinateSystem coordinateSystem; | |
| }; | |
| [Constructor(VRDisplay)] | |
| interface VRStageAnchor : VRAnchor { | |
| readonly attribute float sizeX; | |
| readonly attribute float sizeY; | |
| }; | |
| [Constructor(VRDisplay)] | |
| interface VRStationaryAnchor : VRAnchor { | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment