Sfoglia il codice sorgente

Update year

customisations
alemart 1 anno fa
parent
commit
4bd8111f8f
39 ha cambiato i file con 39 aggiunte e 39 eliminazioni
  1. 1
    1
      src/core/frame.ts
  2. 1
    1
      src/core/gizmos.ts
  3. 1
    1
      src/core/hud.ts
  4. 1
    1
      src/core/resolution.ts
  5. 1
    1
      src/core/session.ts
  6. 1
    1
      src/core/settings.ts
  7. 1
    1
      src/core/stats-panel.ts
  8. 1
    1
      src/core/stats.ts
  9. 1
    1
      src/core/time.ts
  10. 1
    1
      src/core/viewport.ts
  11. 1
    1
      src/geometry/camera-model.ts
  12. 1
    1
      src/geometry/pose.ts
  13. 1
    1
      src/geometry/transform.ts
  14. 1
    1
      src/geometry/view.ts
  15. 1
    1
      src/geometry/viewer-pose.ts
  16. 1
    1
      src/geometry/viewer.ts
  17. 1
    1
      src/main.ts
  18. 1
    1
      src/sources/camera-source.ts
  19. 1
    1
      src/sources/canvas-source.ts
  20. 1
    1
      src/sources/source-factory.ts
  21. 1
    1
      src/sources/source.ts
  22. 1
    1
      src/sources/video-source.ts
  23. 1
    1
      src/trackers/image-tracker/image-tracker-event.ts
  24. 1
    1
      src/trackers/image-tracker/image-tracker.ts
  25. 1
    1
      src/trackers/image-tracker/reference-image-database.ts
  26. 1
    1
      src/trackers/image-tracker/reference-image.ts
  27. 1
    1
      src/trackers/image-tracker/settings.ts
  28. 1
    1
      src/trackers/image-tracker/states/initial.ts
  29. 1
    1
      src/trackers/image-tracker/states/pre-tracking.ts
  30. 1
    1
      src/trackers/image-tracker/states/scanning.ts
  31. 1
    1
      src/trackers/image-tracker/states/state.ts
  32. 1
    1
      src/trackers/image-tracker/states/tracking.ts
  33. 1
    1
      src/trackers/image-tracker/states/training.ts
  34. 1
    1
      src/trackers/tracker-factory.ts
  35. 1
    1
      src/trackers/tracker.ts
  36. 1
    1
      src/utils/ar-events.ts
  37. 1
    1
      src/utils/asap.ts
  38. 1
    1
      src/utils/errors.ts
  39. 1
    1
      src/utils/utils.ts

+ 1
- 1
src/core/frame.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/gizmos.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/hud.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/resolution.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/session.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/settings.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/stats-panel.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/stats.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/time.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/core/viewport.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/camera-model.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/pose.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/transform.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/view.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/viewer-pose.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/geometry/viewer.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/main.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/sources/camera-source.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/sources/canvas-source.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/sources/source-factory.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/sources/source.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/sources/video-source.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/image-tracker-event.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/image-tracker.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/reference-image-database.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/reference-image.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/settings.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/initial.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/pre-tracking.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/scanning.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/state.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/tracking.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/image-tracker/states/training.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/tracker-factory.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/trackers/tracker.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/utils/ar-events.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/utils/asap.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/utils/errors.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

+ 1
- 1
src/utils/utils.ts Vedi File

1
 /*
1
 /*
2
  * MARTINS.js
2
  * MARTINS.js
3
  * GPU-accelerated Augmented Reality for the web
3
  * GPU-accelerated Augmented Reality for the web
4
- * Copyright (C) 2022  Alexandre Martins <alemartf(at)gmail.com>
4
+ * Copyright (C) 2022-2024 Alexandre Martins <alemartf(at)gmail.com>
5
  *
5
  *
6
  * This program is free software: you can redistribute it and/or modify
6
  * This program is free software: you can redistribute it and/or modify
7
  * it under the terms of the GNU Lesser General Public License as published
7
  * it under the terms of the GNU Lesser General Public License as published

Loading…
Annulla
Salva