Skip to content

Commit 93b05e3

Browse files
committed
More doubles and typed data
1 parent 1179402 commit 93b05e3

File tree

97 files changed

+99227
-68801
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+99227
-68801
lines changed

docs/0/box2d.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

docs/box2d/AxisAlignedBox.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ <h2><strong>AxisAlignedBox</strong>
4545
* are specified, constructs the box with both bounds at the origin.
4646
*/
4747
AxisAlignedBox([this.lowerBound = null, this.upperBound = null]) {
48-
if (lowerBound == null) lowerBound = new Vector();
49-
if (upperBound == null) upperBound = new Vector();
48+
if (lowerBound == null) lowerBound = new Vector.zero();
49+
if (upperBound == null) upperBound = new Vector.zero();
5050
}
5151

5252
/**
@@ -132,8 +132,8 @@ <h3>Constructors</h3>
132132
are specified, constructs the box with both bounds at the origin.</p>
133133
<pre class="source">
134134
AxisAlignedBox([this.lowerBound = null, this.upperBound = null]) {
135-
if (lowerBound == null) lowerBound = new Vector();
136-
if (upperBound == null) upperBound = new Vector();
135+
if (lowerBound == null) lowerBound = new Vector.zero();
136+
if (upperBound == null) upperBound = new Vector.zero();
137137
}
138138
</pre>
139139
</div>

0 commit comments

Comments
 (0)