<!DOCTYPE html>
<html>
  <head>
    <title>Primitives - 04 - Scale</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="-1 2 -2"
        scale="1 3 1"        
        color="red"
      ></a-box>

      <a-sphere
        position="1 2 -2"
        radius="1"
        scale="0.5 1 0.6"
        color="red"
      ></a-sphere>
    </a-scene>
  </body>
</html>