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