This commit is contained in:
oscar.plaisant@icloud.com
2023-10-23 23:30:51 +02:00
parent f5b9c3d02c
commit 03ecc4a65b
3433 changed files with 1756195 additions and 0 deletions

47
.obsidian/plugins/3d-graph/data.json vendored Normal file
View File

@@ -0,0 +1,47 @@
{
"filters": {
"doShowOrphans": true
},
"groups": {
"groups": [
{
"query": "tag:#not-done",
"color": "#878787"
},
{
"query": "tag:#MOC",
"color": "#e16613"
},
{
"query": "tag:#excalidraw",
"color": "#7a5cff"
},
{
"query": "tag:#PKM OR tag:#obsidian",
"color": "#4a37a0"
},
{
"query": "tag:#flashcards",
"color": "#4a37a0"
},
{
"query": "tag:#gists",
"color": "#682d93"
},
{
"query": "tag:#CV",
"color": "#a80089"
},
{
"query": "tag:#maths",
"color": "#2a9e00"
}
]
},
"display": {
"nodeSize": 4,
"linkThickness": 5,
"particleSize": 6,
"particleCount": 4
}
}

31211
.obsidian/plugins/3d-graph/main.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,9 @@
{
"id": "3d-graph",
"name": "3D Graph",
"version": "1.0.3",
"description": "A 3D Graph for Obsidian",
"author": "Alexander Weichart",
"authorUrl": "https://github.com/AlexW00",
"isDesktopOnly": false
}

57
.obsidian/plugins/3d-graph/styles.css vendored Normal file
View File

@@ -0,0 +1,57 @@
.graph-3d-view .tree-item.is-collapsed > .tree-item-children {
display: none;
visibility: hidden;
}
.graph-3d-view {
padding: 0 !important;
position: relative;
overflow: hidden !important;
}
.graph-3d-view .graph-controls.is-collapsed > .graph-control-section {
display: none;
visibility: hidden;
}
.graph-3d-view .graph-controls:hover > .control-buttons {
opacity: 0.5;
}
.graph-3d-view .graph-controls > .control-buttons:hover {
opacity: 1;
}
.graph-3d-view .graph-controls > .control-buttons {
float: right;
margin-right: 0;
opacity: 0;
}
.graph-3d-view .hidden {
display: none;
visibility: hidden;
}
.graph-3d-view .control-buttons {
display: block;
}
.graph-3d-view .control-buttons > * {
display: inline-block;
margin: 0;
}
.graph-3d-view .graph-settings-view > .clickable-icon {
position: absolute;
top: 8px;
right: 8px;
}
.graph-3d-view .node-label {
color: var(--text-normal);
}
.graph-3d-view .scene-nav-info {
display: none;
visibility: hidden;
}