<!DOCTYPE html>
<html>
  <head>
    <title>Primitives - 03 - Rotation</title>
    <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
    <script src="../js/livecode.js"></script>
  </head>
  <body>
    <a-scene>
      <a-box
        position="0 2 -2"
        width="1"
        height="3"
        depth="1"
        rotation="45 0 0"
        color="red"
      ></a-box>
    </a-scene>
  </body>
</html>