@kittycad/lib 4.2.13 → 4.2.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4168,7 +4168,19 @@ export type ModelingCmd = {
4168
4168
  * }
4169
4169
  */
4170
4170
  body_type?: BodyType;
4171
- /** default:sketch_plane, description:What is this sweep relative to? */
4171
+ /**
4172
+ * {
4173
+ * "nullable": true,
4174
+ * "description": "If true, before the sweep starts, the profile will be re-oriented so that it is perpendicular to the path being swept along. If false, the profile is left in its current orientation. Defaults to false."
4175
+ * }
4176
+ */
4177
+ orient_profile_perpendicular?: boolean;
4178
+ /**
4179
+ * {
4180
+ * "nullable": true,
4181
+ * "description": "What is this sweep relative to? Deprecated; please use `translate_profile_to_path` and `orient_profile_perpendicular` instead."
4182
+ * }
4183
+ */
4172
4184
  relative_to?: RelativeTo;
4173
4185
  /** If true, the sweep will be broken up into sub-sweeps (extrusions, revolves, sweeps) based on the trajectory path components. */
4174
4186
  sectional: boolean;
@@ -4178,6 +4190,13 @@ export type ModelingCmd = {
4178
4190
  tolerance: LengthUnit;
4179
4191
  /** Path along which to sweep. */
4180
4192
  trajectory: ModelingCmdId;
4193
+ /**
4194
+ * {
4195
+ * "nullable": true,
4196
+ * "description": "If true, the profile being swept will be moved to the path being swept along, before the sweep starts. If false, the profile stays where it is, and the sweep starts from there. Defaults to false."
4197
+ * }
4198
+ */
4199
+ translate_profile_to_path?: boolean;
4181
4200
  type: 'sweep';
4182
4201
  /**
4183
4202
  * {