@@ -4,6 +4,13 @@
<meta charset="utf-8">
<title>three.js - documentation</title>
<style>
+ @font-face {
+ font-family: 'inconsolata';
+ src: url('files/inconsolata.woff') format('woff');
+ font-weight: normal;
+ font-style: normal;
+ }
+
html {
height: 100%;
}
@@ -13,7 +20,7 @@
padding: 0;
color: #555;
- font-family: Arial, sans-serif;
font-size: 15px;
overflow: hidden;
@@ -36,15 +43,19 @@
#panel h1 {
- color: #444;
+ color: #333;
font-size: 25px;
margin-top: 25px;
margin-left: 20px;
#panel h2 {
- color: #999;
+ color: #666;
font-size: 16px;
margin-top: 20px;
@@ -1,32 +1,44 @@
+@font-face {
+}
body {
- margin: 20px;
+ margin: 25px 20px;
overflow: auto;
a {
- color: #2194CE;
+ color: #1184CE;
h1 {
margin-top: 10px;
h2 {
- color: #8B2;
+ color: #4B0;
font-size: 18px;
margin-top: 40px;
h3 {
color: #000;
- margin-top: 30px;
font-weight: normal;
+ margin-top: 30px;
div {
@@ -34,7 +34,7 @@ THREE.Geometry = function () {
this.hasTangents = false;
- this.dynamic = false; // unless set to true the *Arrays will be deleted once sent to a buffer
+ this.dynamic = true; // the intermediate typearrays will be deleted when set to false
};