Skip to content

Commit 862b128

Browse files
committed
docs: add SPDX MIT LICENSE to file headers
1 parent d092875 commit 862b128

File tree

7 files changed

+28
-41
lines changed

7 files changed

+28
-41
lines changed

example/main.cpp

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D Example
3-
// main.cpp
4-
// Date: 2024-11-17
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//--------------------------------------------------
5+
76
#include "imgui.h"
87
#include "imgui_impl_glfw.h"
98
#include "imgui_impl_opengl3.h"

implot3d.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d.cpp
4-
// Date: 2024-11-16
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] Includes

implot3d.h

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d.h
4-
// Date: 2024-11-16
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] Macros and Defines

implot3d_demo.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d_demo.cpp
4-
// Date: 2024-11-17
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] User Namespace

implot3d_internal.h

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d_internal.h
4-
// Date: 2024-11-17
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] Constants

implot3d_items.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d_items.cpp
4-
// Date: 2024-11-26
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] Includes

implot3d_meshes.cpp

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
//--------------------------------------------------
1+
// SPDX-License-Identifier: MIT
2+
// SPDX-FileCopyrightText: 2024-2025 Breno Cunha Queiroz
3+
24
// ImPlot3D v0.3 WIP
3-
// implot3d_meshes.cpp
4-
// Date: 2024-12-07
5-
// Author: Breno Cunha Queiroz (brenocq.com)
6-
//
5+
76
// Acknowledgments:
87
// ImPlot3D is heavily inspired by ImPlot
98
// (https://github.com/epezent/implot) by Evan Pezent,
109
// and follows a similar code style and structure to
1110
// maintain consistency with ImPlot's API.
12-
//--------------------------------------------------
1311

1412
// Table of Contents:
1513
// [SECTION] Includes

0 commit comments

Comments
 (0)