Skip to content

Commit

Permalink
don't quote identifiers in test geometry
Browse files Browse the repository at this point in the history
  • Loading branch information
brendankenny committed Oct 31, 2014
1 parent 02c233b commit 1096a4a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/geometry/hourglass.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
module.exports = {
// short self-intersecting single contour
// bottom of hourglass is anticlockwise, top is clockwise
'name': 'Hourglass',
'value': [
name: 'Hourglass',
value: [
[
1, 1, 0,
-1, -1, 0,
Expand Down
4 changes: 2 additions & 2 deletions test/geometry/shared-borders.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

module.exports = {
// three contours with shared edges but no shared vertices
'name': 'Shared Borders',
'value': [
name: 'Shared Borders',
value: [
// anticlockwise
[
1, 3, 0,
Expand Down
4 changes: 2 additions & 2 deletions test/geometry/two-opposite-triangles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
module.exports = {
// two intersecting triangles with opposite winding
// first is anticlockwise, second is clockwise
'name': 'Two Opposite Triangles',
'value': [
name: 'Two Opposite Triangles',
value: [
[
1, -1, 0,
0, 1, 0,
Expand Down
4 changes: 2 additions & 2 deletions test/geometry/two-triangles.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
module.exports = {
// two intersecting triangles
// both are anticlockwise (positive winding)
'name': 'Two Triangles',
'value': [
name: 'Two Triangles',
value: [
[
1, -1, 0,
0, 1, 0,
Expand Down

0 comments on commit 1096a4a

Please sign in to comment.