nicsys license

This commit is contained in:
STEINNI
2026-02-21 22:08:59 +00:00
parent 3c93683ca1
commit d9bdc34210
10 changed files with 114 additions and 9 deletions
+3 -3
View File
@@ -64,7 +64,7 @@
const grflw2 = document.querySelector('bz-graflow.eic')
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',
(evt) => { grflw2.autoPlace('vertical', 80, 80, 1000) }
@@ -75,12 +75,12 @@
(evt) => { grflw3.autoPlace('horizontal', 80, 80, 1000) }
)
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')
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',
(evt) => { grflw4.autoPlace('vertical', 80, 80, 1000) }
+12 -1
View File
@@ -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 {
constructor(){
+14 -4
View File
@@ -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{
dirVect = {
n: { x: 0, y: -1 },
@@ -415,12 +428,9 @@ class BZgraflow extends Buildoz{
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
this._virtualLinks = new Map()
this.flow.longLinks = this.findLongLinks(this.flow.links)
for(const llink of this.flow.longLinks){
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 {
actions = [
{
+12
View File
@@ -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 {
DOMContentLoaded() {
+12
View File
@@ -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 {
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'
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 { OrbitControls } from 'three/examples/jsm/controls/OrbitControls.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
* @subcategory Views
+12
View File
@@ -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 {
constructor() {