1
Fork 0

Reformat black processing bathy

This commit is contained in:
Edgar P. Burkhart 2022-03-04 13:43:59 +01:00
parent e4449067db
commit 9a52906873
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 4 additions and 4 deletions

View File

@ -28,12 +28,12 @@ out.mkdir(exist_ok=True)
stl_from_1d( stl_from_1d(
bathy, bathy,
out.joinpath("bathy.stl"), out.joinpath("bathy.stl"),
config.get("bathy", "scale", fallback=[1,1,1]), config.get("bathy", "scale", fallback=[1, 1, 1]),
config.get("bathy", "translate", fallback=[0,0,0]), config.get("bathy", "translate", fallback=[0, 0, 0]),
) )
stl_from_1d( stl_from_1d(
poro, poro,
out.joinpath("poro.stl"), out.joinpath("poro.stl"),
config.get("bathy", "scale", fallback=[1,1,1]), config.get("bathy", "scale", fallback=[1, 1, 1]),
config.get("bathy", "translate", fallback=[0,0,0]), config.get("bathy", "translate", fallback=[0, 0, 0]),
) )