@@ -1217,34 +1217,34 @@ fn four_sides_view() -> Vec<kcmc::ModelingCmd> {
12171217 format : kittycad_modeling_cmds:: ImageFormat :: Png ,
12181218 } ) ;
12191219
1220- let top = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1220+ let front = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1221+ up : Point3d { x : 0.0 , y : 0.0 , z : 1.0 } ,
12211222 vantage : Point3d {
12221223 x : 0.0 ,
12231224 y : -1.0 ,
12241225 z : 0.0 ,
12251226 } ,
12261227 center,
1227- up : Point3d { x : 0.0 , y : 0.0 , z : 1.0 } ,
12281228 sequence : None ,
12291229 } ) ;
12301230
1231- let front = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1231+ let side = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1232+ up : Point3d { x : 0.0 , y : 0.0 , z : 1.0 } ,
12321233 vantage : Point3d { x : 1.0 , y : 0.0 , z : 0.0 } ,
12331234 center,
1234- up : Point3d { x : 0.0 , y : 0.0 , z : 1.0 } ,
12351235 sequence : None ,
12361236 } ) ;
12371237
1238- let side = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1238+ let top = kcmc:: ModelingCmd :: DefaultCameraLookAt ( kcmc:: DefaultCameraLookAt {
1239+ up : Point3d { x : 0.0 , y : 1.0 , z : 0.0 } ,
12391240 vantage : Point3d { x : 0.0 , y : 0.0 , z : 1.0 } ,
12401241 center,
1241- up : Point3d { x : 0.0 , y : 1.0 , z : 0.0 } ,
12421242 sequence : None ,
12431243 } ) ;
12441244
12451245 let iso = kcmc:: ModelingCmd :: ViewIsometric ( kcmc:: ViewIsometric { padding : 0.0 } ) ;
12461246
1247- vec ! [ top , snap. clone( ) , front , snap. clone( ) , side , snap. clone( ) , iso, snap]
1247+ vec ! [ front , snap. clone( ) , side , snap. clone( ) , top , snap. clone( ) , iso, snap]
12481248}
12491249
12501250fn combine_quadrants (
0 commit comments