Recently, I came across THREE.js and managed to make it work successfully. This is how I included it in my HTML:
<script src="https://rawgithub.com/mrdoob/three.js/master/build/three.js"></script>
I am now interested in accessing the "extras". Specifically, I'd like to use CircleGeomtry. Although I checked their documentation, I'm uncertain about how to implement it in my HTML.
According to their documentation, this is what's mentioned:
src/extras/geometries/CircleGeometry.js
Do I need to download it? Or can I reference it similar to the way I did above?