Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
3746a9bb30
1 changed files with 2 additions and 2 deletions
|
@ -579,8 +579,8 @@ export class Graph extends Model {
|
|||
if (this.graphData.nodes.length > 1024) {
|
||||
maxVelocity = 1024;
|
||||
}
|
||||
if (this.graphData.nodes.length < 50) {
|
||||
maxVelocity = 50;
|
||||
if (this.graphData.nodes.length < 256) {
|
||||
maxVelocity = 256;
|
||||
}
|
||||
let minVelocity = this.graphData.nodes.length;
|
||||
if (this.graphData.nodes.length > 64) {
|
||||
|
|
Loading…
Add table
Reference in a new issue