Skip to content

Commit 6b6b1bd

Browse files
committed
Default everything to live: true, add quicky architecture diagram, remove unused ThreeRTT shaders for now
1 parent 51284af commit 6b6b1bd

14 files changed

+1431
-41
lines changed

build/MathBox-bundle.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -10037,7 +10037,7 @@ MathBox.Curve.prototype = _.extend(new MathBox.Primitive(null), {
1003710037
domain: [0, 1],
1003810038
data: null,
1003910039
expression: function () { return 0; },
10040-
live: false,
10040+
live: true,
1004110041
points: false,
1004210042
line: true,
1004310043
style: {}//,
@@ -10142,7 +10142,7 @@ MathBox.Bezier.prototype = _.extend(new MathBox.Curve(null), {
1014210142
data: null,
1014310143
order: 3,
1014410144
expression: function () { return 0; },
10145-
live: false,
10145+
live: true,
1014610146
points: false,
1014710147
line: true,
1014810148
style: {}//,
@@ -10533,7 +10533,7 @@ MathBox.Vector.prototype = _.extend(new MathBox.Primitive(null), {
1053310533
n: 1,
1053410534
data: null,
1053510535
expression: function () { return 0; },
10536-
live: false,
10536+
live: true,
1053710537
style: {},
1053810538
size: .07//,
1053910539
};
@@ -10549,7 +10549,7 @@ MathBox.Vector.prototype = _.extend(new MathBox.Primitive(null), {
1054910549

1055010550
adjust: function (viewport) {
1055110551
var options = this.get();
10552-
// Vector foreshortening requires live
10552+
// Bug: Vector foreshortening requires live to be always-on
1055310553
(true || options.live) && this.calculate(viewport);
1055410554
},
1055510555

@@ -10673,7 +10673,7 @@ MathBox.Surface.prototype = _.extend(new MathBox.Primitive(null), {
1067310673
domain: [[0, 1], [0, 1]],
1067410674
data: null,
1067510675
expression: function () { return 0; },
10676-
live: false,
10676+
live: true,
1067710677
points: false,
1067810678
line: false,
1067910679
mesh: true,
@@ -10814,7 +10814,7 @@ MathBox.BezierSurface.prototype = _.extend(new MathBox.Surface(null), {
1081410814
data: null,
1081510815
order: 3,
1081610816
expression: function () { return 0; },
10817-
live: false,
10817+
live: true,
1081810818
points: false,
1081910819
line: false,
1082010820
mesh: true,

build/MathBox-bundle.min.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/MathBox-core.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -1662,7 +1662,7 @@ MathBox.Curve.prototype = _.extend(new MathBox.Primitive(null), {
16621662
domain: [0, 1],
16631663
data: null,
16641664
expression: function () { return 0; },
1665-
live: false,
1665+
live: true,
16661666
points: false,
16671667
line: true,
16681668
style: {}//,
@@ -1767,7 +1767,7 @@ MathBox.Bezier.prototype = _.extend(new MathBox.Curve(null), {
17671767
data: null,
17681768
order: 3,
17691769
expression: function () { return 0; },
1770-
live: false,
1770+
live: true,
17711771
points: false,
17721772
line: true,
17731773
style: {}//,
@@ -2158,7 +2158,7 @@ MathBox.Vector.prototype = _.extend(new MathBox.Primitive(null), {
21582158
n: 1,
21592159
data: null,
21602160
expression: function () { return 0; },
2161-
live: false,
2161+
live: true,
21622162
style: {},
21632163
size: .07//,
21642164
};
@@ -2174,7 +2174,7 @@ MathBox.Vector.prototype = _.extend(new MathBox.Primitive(null), {
21742174

21752175
adjust: function (viewport) {
21762176
var options = this.get();
2177-
// Vector foreshortening requires live
2177+
// Bug: Vector foreshortening requires live to be always-on
21782178
(true || options.live) && this.calculate(viewport);
21792179
},
21802180

@@ -2298,7 +2298,7 @@ MathBox.Surface.prototype = _.extend(new MathBox.Primitive(null), {
22982298
domain: [[0, 1], [0, 1]],
22992299
data: null,
23002300
expression: function () { return 0; },
2301-
live: false,
2301+
live: true,
23022302
points: false,
23032303
line: false,
23042304
mesh: true,
@@ -2439,7 +2439,7 @@ MathBox.BezierSurface.prototype = _.extend(new MathBox.Surface(null), {
24392439
data: null,
24402440
order: 3,
24412441
expression: function () { return 0; },
2442-
live: false,
2442+
live: true,
24432443
points: false,
24442444
line: false,
24452445
mesh: true,

0 commit comments

Comments
 (0)