temporal_graph_scene
Manim scene implementation for temporal graph animation.
Core animation scene that renders temporal networks with time-based node/edge evolution. Handles smooth transitions, proper edge-node boundary calculations, and time indicator display.
TemporalGraphScene
¶
Bases: manim.Scene
Manim scene for animated temporal network visualization.
Creates time-based animations showing network evolution with nodes appearing/moving and edges being added/removed over time. Handles proper scaling, positioning, and smooth transitions between timesteps.
Source code in src/pathpyG/visualisations/_manim/temporal_graph_scene.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 | |
__init__
¶
Initialize temporal graph scene with network data and configuration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict
|
Network data with nodes/edges DataFrames in a dictionary |
required |
config
|
dict
|
Animation configuration (timing, colors, etc.) |
required |
show_labels
|
bool
|
Whether to display node labels |
required |
Source code in src/pathpyG/visualisations/_manim/temporal_graph_scene.py
construct
¶
Create temporal network animation with time-based evolution.
Main animation sequence: 1. Initialize nodes at t=0 with layout positioning 2. For each timestep: update time display, add new edges, transform node positions, remove old edges 3. Clean up final frame
Uses smooth transitions and proper edge-node boundary calculations for professional animation quality.
Source code in src/pathpyG/visualisations/_manim/temporal_graph_scene.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
get_boundary_point
¶
Calculate edge attachment point on node boundary.
Computes where edges should connect to nodes to avoid visual overlap with node circles. Uses vector normalization to find the intersection point on the node's circumference.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
center
|
Node center coordinates (x, y, z) |
required | |
direction
|
Direction vector to target node |
required | |
radius
|
Node radius for boundary calculation |
required |
Returns:
| Type | Description |
|---|---|
|
Boundary point coordinates for clean edge attachment |