Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

filler.segment.d.ts 792B

123456789101112131415161718192021222324252627282930313233343536
  1. export function _segments(line: any, target: any, property: any): ({
  2. source: any;
  3. target: {
  4. property: any;
  5. start: any;
  6. end: any;
  7. };
  8. start: any;
  9. end: any;
  10. } | {
  11. source: {
  12. start: number;
  13. end: number;
  14. loop: boolean;
  15. style?: any;
  16. };
  17. target: {
  18. start: number;
  19. end: number;
  20. loop: boolean;
  21. style?: any;
  22. };
  23. start: {
  24. [x: number]: any;
  25. };
  26. end: {
  27. [x: number]: any;
  28. };
  29. })[];
  30. export function _getBounds(property: any, first: any, last: any, loop: any): {
  31. property: any;
  32. start: any;
  33. end: any;
  34. };
  35. export function _pointsFromSegments(boundary: any, line: any): any[];
  36. export function _findSegmentEnd(start: any, end: any, points: any): any;