Skip to main content

import_settings_v3_6.json

import_settings.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "description": "settings for import", "type"...

Updated over 3 weeks ago

import_settings.json

Copy Json

{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "settings for import",
  "type": "object",
  "properties": {
    "file_format":{
        "type": "string",
        "enum": [
          "dxf"
        ]
      },
      "shape_rotation": {
        "type": "number",
        "description": "rotation in deg",
        "minimum": -360,
        "maximum": 360
      },
      "unit": {
        "type": "string",
        "default": "cm",
        "enum": [
          "inch",
          "cm"
        ]
      },
      "size_multiplier": {
        "type": "number",
        "default": 1.0,
        "enum" :[
          0.01,
          0.1,
          1.0,
          10,
          100
        ]
      },
      "detect_corners": {
        "type": "boolean",
        "default": true
      },
      "import_dxf_turn_points": {
        "type": "boolean",
        "default": false
      },
      "curve_optimization": {
        "type": "boolean",
        "default": false
      },
      "align_by_grainline": {
        "type": "boolean",
        "default": false
      },
      "internals_auto_grading": {
        "type": "boolean",
        "default": true
      }
    },
    "required": [
      "file_format"
    ]    
}
Did this answer your question?