Complete the code to create a projected view from the front view.
ProjectedView = CreateView([1], baseView)To create a projected view like the RightView, you project from an existing base view such as the FrontView.
Complete the code to create an auxiliary view at 45 degrees to the front view.
AuxView = CreateAuxiliaryView(baseView, angle=[1])Auxiliary views are created at an angle to show features not parallel to principal planes. 45 degrees is a common angle.
Fix the error in the code to correctly link the auxiliary view to the base view.
AuxView = CreateAuxiliaryView([1], angle=45)
The auxiliary view must be created from the base view, which is the FrontView in this case.
Fill both blanks to create a projected view from the front view and set its orientation.
ProjectedView = CreateView([1], baseView) ProjectedView.SetOrientation([2])
The RightView (projected view) is created from the FrontView (baseView), and its orientation is vertical.
Fill all three blanks to create an auxiliary view at 30 degrees and set its scale and orientation.
AuxView = CreateAuxiliaryView([1], angle=[2]) AuxView.SetScale([3]) AuxView.SetOrientation('Horizontal')
The auxiliary view is created from the FrontView at 30 degrees with a scale of 1.5 for better detail.
