nicsys license
This commit is contained in:
@@ -64,7 +64,7 @@
|
|||||||
|
|
||||||
const grflw2 = document.querySelector('bz-graflow.eic')
|
const grflw2 = document.querySelector('bz-graflow.eic')
|
||||||
document.querySelector('[data-trigger="onAutoplace2H"]').addEventListener('click',
|
document.querySelector('[data-trigger="onAutoplace2H"]').addEventListener('click',
|
||||||
(evt) => { grflw2.autoPlace('horizontal', 80, 80, 1000) }
|
(evt) => { grflw2.autoPlace('horizontal', 100, 30, 1000) }
|
||||||
)
|
)
|
||||||
document.querySelector('[data-trigger="onAutoplace2V"]').addEventListener('click',
|
document.querySelector('[data-trigger="onAutoplace2V"]').addEventListener('click',
|
||||||
(evt) => { grflw2.autoPlace('vertical', 80, 80, 1000) }
|
(evt) => { grflw2.autoPlace('vertical', 80, 80, 1000) }
|
||||||
@@ -75,12 +75,12 @@
|
|||||||
(evt) => { grflw3.autoPlace('horizontal', 80, 80, 1000) }
|
(evt) => { grflw3.autoPlace('horizontal', 80, 80, 1000) }
|
||||||
)
|
)
|
||||||
document.querySelector('[data-trigger="onAutoplace3V"]').addEventListener('click',
|
document.querySelector('[data-trigger="onAutoplace3V"]').addEventListener('click',
|
||||||
(evt) => { grflw3.autoPlace('vertical', 80, 50, 1000) }
|
(evt) => { grflw3.autoPlace('vertical', 80, 30, 1000) }
|
||||||
)
|
)
|
||||||
|
|
||||||
const grflw4 = document.querySelector('bz-graflow.icmp')
|
const grflw4 = document.querySelector('bz-graflow.icmp')
|
||||||
document.querySelector('[data-trigger="onAutoplace4H"]').addEventListener('click',
|
document.querySelector('[data-trigger="onAutoplace4H"]').addEventListener('click',
|
||||||
(evt) => { grflw4.autoPlace('horizontal', 80, 80, 1000) }
|
(evt) => { grflw4.autoPlace('horizontal', 100, 30, 1000) }
|
||||||
)
|
)
|
||||||
document.querySelector('[data-trigger="onAutoplace4V"]').addEventListener('click',
|
document.querySelector('[data-trigger="onAutoplace4V"]').addEventListener('click',
|
||||||
(evt) => { grflw4.autoPlace('vertical', 80, 80, 1000) }
|
(evt) => { grflw4.autoPlace('vertical', 80, 80, 1000) }
|
||||||
|
|||||||
Vendored
+12
-1
@@ -1,4 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
|
|
||||||
class Buildoz extends HTMLElement {
|
class Buildoz extends HTMLElement {
|
||||||
constructor(){
|
constructor(){
|
||||||
|
|||||||
Vendored
+15
-5
@@ -1,3 +1,16 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
|
|
||||||
class BZgraflow extends Buildoz{
|
class BZgraflow extends Buildoz{
|
||||||
dirVect = {
|
dirVect = {
|
||||||
n: { x: 0, y: -1 },
|
n: { x: 0, y: -1 },
|
||||||
@@ -414,13 +427,10 @@ class BZgraflow extends Buildoz{
|
|||||||
if(totWidth>maxWidth) maxWidth = totWidth
|
if(totWidth>maxWidth) maxWidth = totWidth
|
||||||
layerWidths.push(totWidth)
|
layerWidths.push(totWidth)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Temporary "virtual" links used only during autoPlace() to let reorderLayers()
|
|
||||||
// reason about placeholder nodes as if they were part of the original long-link.
|
|
||||||
// This prevents bogus swaps caused by missing port info on placeholders.
|
|
||||||
this._virtualLinks = new Map()
|
|
||||||
|
|
||||||
|
|
||||||
// If any long-links, create placeholders for skipped layers
|
// If any long-links, create placeholders for skipped layers
|
||||||
|
this._virtualLinks = new Map()
|
||||||
this.flow.longLinks = this.findLongLinks(this.flow.links)
|
this.flow.longLinks = this.findLongLinks(this.flow.links)
|
||||||
for(const llink of this.flow.longLinks){
|
for(const llink of this.flow.longLinks){
|
||||||
let fakeParent = llink.link.from[0]
|
let fakeParent = llink.link.from[0]
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
class ProfilePreferencesResetDialog extends WindozDialogContent {
|
class ProfilePreferencesResetDialog extends WindozDialogContent {
|
||||||
actions = [
|
actions = [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
class myProfileView extends WindozDomContent {
|
class myProfileView extends WindozDomContent {
|
||||||
|
|
||||||
DOMContentLoaded() {
|
DOMContentLoaded() {
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
class KeyframeView extends WindozDomContent {
|
class KeyframeView extends WindozDomContent {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
import * as THREE from 'three' //'/app/thirdparty/Three/three.module.js'
|
import * as THREE from 'three' //'/app/thirdparty/Three/three.module.js'
|
||||||
|
|
||||||
export class AgentPreview{
|
export class AgentPreview{
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
import * as THREE from 'three'
|
import * as THREE from 'three'
|
||||||
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
|
import { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.js'
|
||||||
import * as TWEEN from 'three/examples/jsm/libs/tween.module.js'
|
import * as TWEEN from 'three/examples/jsm/libs/tween.module.js'
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
/**
|
/**
|
||||||
* @category MyEic
|
* @category MyEic
|
||||||
* @subcategory Views
|
* @subcategory Views
|
||||||
|
|||||||
@@ -1,3 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* _ ___ Another
|
||||||
|
* / |/ (_)______ __ _____
|
||||||
|
* / / / __(_-</ // (_-<
|
||||||
|
* /_/|_/_/\__/___/\_, /___/
|
||||||
|
* /___/
|
||||||
|
* production !
|
||||||
|
*
|
||||||
|
* Licensed under the MIT License:
|
||||||
|
* This code is free to use and modify,
|
||||||
|
* as long as the copyright notice and license are kept.
|
||||||
|
*/
|
||||||
class SpaceView extends WindozDomContent {
|
class SpaceView extends WindozDomContent {
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
|
|||||||
Reference in New Issue
Block a user