Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/DSL-Lab/StreamSplat
/ translate3d
Function
translate3d
datasets/augmentv2.py:91–97 ·
view source on GitHub ↗
(tx, ty, tz, **kwargs)
Source
from the content-addressed store, hash-verified
89
**kwargs)
90
91
def
translate3d(tx, ty, tz, **kwargs):
92
return
matrix(
93
[1, 0, 0, tx],
94
[0, 1, 0, ty],
95
[0, 0, 1, tz],
96
[0, 0, 0, 1],
97
**kwargs)
98
99
def
scale2d(sx, sy, **kwargs):
100
return
matrix(
Callers
1
__call__
Method · 0.85
Calls
1
matrix
Function · 0.85
Tested by
no test coverage detected