Skip to content

Commit 0c19942

Browse files
author
fabianmoronzirfas
committed
fix(update to latest state of develop):
1 parent 6e0c115 commit 0c19942

File tree

11 files changed

+19611
-3865
lines changed

11 files changed

+19611
-3865
lines changed

.bin/api/data.json

Lines changed: 17232 additions & 3357 deletions
Large diffs are not rendered by default.

_data/categories.json

Lines changed: 1174 additions & 241 deletions
Large diffs are not rendered by default.

_data/cats-and-subcats.json

Lines changed: 1174 additions & 241 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@babel/preset-env": "^7.2.3",
3232
"acorn": "^6.0.4",
3333
"babel-loader": "^8.0.4",
34-
"basiljs": "github:basiljs/basil.js#fix/constants-subcats",
34+
"basiljs": "github:basiljs/basil.js#develop",
3535
"broken-link-checker": "^0.7.8",
3636
"cz-conventional-changelog": "^2.1.0",
3737
"documentation": "^9.1.1",

reference/data/isURL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: entry
33
title: isURL
44
codetitle: isURL(url)
5-
description: 'Checks whether an URL string is valid.'
5+
description: 'Checks wether an URL string is valid.'
66
category: Data
77
subcategory: Type-Check
88
returns:

reference/math/Vector.cross.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
---
22
layout: entry
33
title: Vector.cross
4-
codetitle: 'Vector.cross(v, [y], [z])'
5-
description: 'Calculates the cross product from this vector to another as `x`, `y`, and `z` components or full vector.'
4+
codetitle: 'Vector.cross(v1, v2)'
5+
description: 'Static function. Calculates the cross product of two vectors. Is meant to be called "static" i.e. `Vector.cross(v1, v2);`'
66
category: Math
77
subcategory: Vector
88
returns:
99
name: null
1010
description: 'The cross product.'
1111
type: [Number]
1212
parameters:
13-
- {name: v, description: 'Either a full vector or an `x` component.', optional: false, type: [Vector, Number]}
14-
- {name: y, description: 'The `y` component.', optional: true, type: [Number]}
15-
- {name: z, description: 'The `z` component.', optional: true, type: [Number]}
13+
- {name: v1, description: 'The first vector.', optional: false, type: [Vector]}
14+
- {name: v2, description: 'The second vector.', optional: false, type: [Vector]}
15+
kind: function
16+
todo: null
17+
examples: []
18+
19+
---
20+
: 'The `z` component.', optional: true, type: [Number]}
1621
kind: function
1722
todo: null
1823
examples: []

reference/math/Vector.dist.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
---
22
layout: entry
33
title: Vector.dist
4-
codetitle: 'Vector.dist(v1, v2)'
5-
description: 'Static function. Calculates the Euclidean distance between two points (considering a point as a vector object). Is meant to be called "static" i.e. `Vector.dist(v1, v2);`'
4+
codetitle: 'Vector.dist(v, [y], [z])'
5+
description: 'Calculates the distance from this vector to another as `x`, `y`, and `z` components or full vector.'
66
category: Math
77
subcategory: Vector
88
returns:
99
name: null
1010
description: 'The distance.'
1111
type: [Number]
1212
parameters:
13-
- {name: v1, description: 'The first vector.', optional: false, type: [Vector]}
14-
- {name: v2, description: 'The second vector.', optional: false, type: [Vector]}
15-
kind: function
16-
todo: null
17-
examples: []
18-
19-
---
20-
}
13+
- {name: v, description: 'Either a full vector or an `x` component.', optional: false, type: [Vector, Number]}
14+
- {name: y, description: 'The `y` component.', optional: true, type: [Number]}
15+
- {name: z, description: 'The `z` component.', optional: true, type: [Number]}
2116
kind: function
2217
todo: null
2318
examples: []

reference/math/Vector.div.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: entry
33
title: Vector.div
44
codetitle: 'Vector.div(v, [y], [z])'
5-
description: 'Divides this vector through `x`, `y`, and `z` components or another vector.`'
5+
description: 'Divides this vector through `x`, `y`, and `z` components or another vector.'
66
category: Math
77
subcategory: Vector
88
returns: null

reference/math/Vector.dot.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
---
22
layout: entry
33
title: Vector.dot
4-
codetitle: 'Vector.dot(v, [y], [z])'
5-
description: 'Calculates the dot product from this vector to another as `x`, `y`, and `z` components or full vector.'
4+
codetitle: 'Vector.dot(v1, v2)'
5+
description: 'Static function. Calculates the dot product of two vectors. Is meant to be called "static" i.e. `Vector.dot(v1, v2);`'
66
category: Math
77
subcategory: Vector
88
returns:
99
name: null
1010
description: 'The dot product.'
1111
type: [Number]
1212
parameters:
13-
- {name: v, description: 'Either a full vector or an `x` component.', optional: false, type: [Vector, Number]}
14-
- {name: y, description: 'The `y` component.', optional: true, type: [Number]}
15-
- {name: z, description: 'The `z` component.', optional: true, type: [Number]}
13+
- {name: v1, description: 'The first vector.', optional: false, type: [Vector]}
14+
- {name: v2, description: 'The second vector.', optional: false, type: [Vector]}
15+
kind: function
16+
todo: null
17+
examples: []
18+
19+
---
20+
on: 'The `z` component.', optional: true, type: [Number]}
1621
kind: function
1722
todo: null
1823
examples: []

0 commit comments

Comments
 (0)