11 lines
176 B
Mathematica
11 lines
176 B
Mathematica
|
function [ground] = initializeGround()
|
||
|
ground = struct();
|
||
|
|
||
|
ground.shape = [2, 2, 0.5]; % m
|
||
|
|
||
|
if nargout == 0
|
||
|
save('./mat/ground.mat', 'ground')
|
||
|
end
|
||
|
end
|
||
|
|