<Class Vec3>
Creates a 3D vector with given coordinate space. Args: x: x coordinate or a Vec3, or a list/tuple/array of 3 numbers. y: y coordinate or None if x is a Vec3 or a list/tuple/array of 3 numbers. z: z coordinate or None if x is a Vec3 or a list/tuple/array of 3 numbers. space: The space of the vector, either "ras", "ras_tkr", "mni305", "mni152" or "voxel".
> This is ignored if x is a Vec3 since the space will be the same as x.
> In other situations, if space is None, the space will be "ras".
Source code in threebrainpy/core/vec3.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 |
|
x
property
writable
Get x coordinate.
y
property
writable
Get y coordinate.
z
property
writable
Get z coordinate.
add(vec3)
Add another vector to this vector in-place. Args: vec3 Vec3: Another vector.
Source code in threebrainpy/core/vec3.py
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
|
applyMat44(mat44)
Apply a 4x4 matrix to this vector in-place. Args: mat44: A 4x4 matrix
Source code in threebrainpy/core/vec3.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
|
copy()
A deep copy this vector.
Source code in threebrainpy/core/vec3.py
333 334 335 336 337 |
|
copyFrom(other)
Copy (in-place) the value of this vector from another vector or a list/tuple/array of 3 numbers. Args: other Vec3 | list | tuple | np.ndarray : The other vector or a list/tuple/array of 3 numbers.
Source code in threebrainpy/core/vec3.py
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 |
|
distanceTo(vec3)
Calculate the distance to another vector. Args: vec3 Vec3: Another vector. Returns: float: The L2 distance to the other vector.
Source code in threebrainpy/core/vec3.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
|
distanceToSquared(vec3)
Calculate the squared distance to another vector. Args: vec3 Vec3: Another vector. Returns: float: The squared L2 distance to the other vector.
Source code in threebrainpy/core/vec3.py
298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 |
|
dot(vec3)
Dot-product another vector to this vector. Args: vec3 Vec3: Another vector. Returns: float: The dot product of this vector and the other vector.
Source code in threebrainpy/core/vec3.py
219 220 221 222 223 224 225 226 227 228 229 230 231 232 |
|
length()
Get the length of this vector. Returns: float: The length of this vector.
Source code in threebrainpy/core/vec3.py
259 260 261 262 263 264 265 |
|
multiplyScalar(scalar)
Multiply this vector by a scalar in-place. Args: scalar float: A scalar.
Source code in threebrainpy/core/vec3.py
234 235 236 237 238 239 240 241 242 243 |
|
normalize()
Normalize this vector in-place.
Source code in threebrainpy/core/vec3.py
267 268 269 270 271 272 273 274 275 276 277 |
|
set(x, y, z)
Set the value of this vector in-place. Args: x: x coordinate. y: y coordinate. z: z coordinate.
Source code in threebrainpy/core/vec3.py
317 318 319 320 321 322 323 324 325 326 327 328 |
|
sub(vec3)
Subtract another vector to this vector in-place. Args: vec3 Vec3: Another vector.
Source code in threebrainpy/core/vec3.py
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
|
to_list()
Convert this vector into a list of 3 numbers.
When the point is invalid, a list of 3 9999.0
will be returned.
Points that far will be be rendered in the viewer
Source code in threebrainpy/core/vec3.py
138 139 140 141 142 143 144 145 146 |
|
to_tuple()
Convert this vector into a tuple of 3 numbers.
Source code in threebrainpy/core/vec3.py
148 149 150 151 152 |
|