Implement the `Move` method to return a position that is moved forward by `speed` units. Assume we start at (0,0,0).
[
{
"input": {
"speed": 5,
"deltaTime": 1
},
"expected": "(0.0, 0.0, 5.0)"
},
{
"input": {
"speed": 10,
"deltaTime": 0.5
},
"expected": "(0.0, 0.0, 5.0)"
},
{
"input": {
"speed": 2,
"deltaTime": 2
},
"expected": "(0.0, 0.0, 4.0)"
}
]