Ignore:
Timestamp:
12/12/24 17:06:06 (5 weeks ago)
Author:
stefan toskovski <stefantoska84@…>
Branches:
main
Parents:
d565449
Message:

Pred finalna verzija

File:
1 edited

Legend:

Unmodified
Added
Removed
  • imaps-frontend/node_modules/konva/lib/BezierFunctions.js

    rd565449 r0c6b92a  
    688688exports.binomialCoefficients = [[1], [1, 1], [1, 2, 1], [1, 3, 3, 1]];
    689689const getCubicArcLength = (xs, ys, t) => {
    690     let z;
    691690    let sum;
    692691    let correctedT;
    693692    const n = 20;
    694     z = t / 2;
     693    const z = t / 2;
    695694    sum = 0;
    696695    for (let i = 0; i < n; i++) {
Note: See TracChangeset for help on using the changeset viewer.