-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdditiveSetupUtility_splitSupport.htm
More file actions
127 lines (125 loc) · 6.45 KB
/
AdditiveSetupUtility_splitSupport.htm
File metadata and controls
127 lines (125 loc) · 6.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="topic-type" content="reference-adsk">
<meta name="helpsystempath" content="/view/NINVFUS/ENU/">
<link rel="canonical" href="/cloudhelp/ENU/Fusion-360-API/files/AdditiveSetupUtility_splitSupport.htm#!">
<meta name="product" content="NINVFUS">
<meta name="release" content="NA">
<meta name="book" content="Developer">
<meta name="component" content="Fusion-360-API">
<meta name="created" content="22/08/2023">
<meta name="user-comments" content="enable">
<meta name="contextid" content="AdditiveSetupUtility_splitSupport">
<meta name="description" content="AdditiveSetupUtility.splitSupport Method">
<meta name="topicid" content="GUID-E96CD826-6E40-4BDA-B957-B7DE3A1BD5BB">
<meta name="experiencelevel" content="expert">
<meta name="audience" content="programmer">
<meta name="language" content="ENU">
<title>AdditiveSetupUtility.splitSupport Method</title>
<link rel="stylesheet" href="../Style/jquery-ui.css"><script src="../Scripts/jquery-1.11.1.js"></script><script src="../Scripts/jquery-ui.js"></script><link rel="stylesheet" type="text/css" href="../Style/APIHelp-chm.css">
<link rel="stylesheet" type="text/css" href="/view/clientframework/client.css"><script type="text/javascript" src="/view/clientframework/client.js"></script><script>
// This turns on the display of the copyright notice which is not visible by default.
// Because the head is removed when used in the web help, this function will only exists
// when the chm help is being created.
window.onload = function() {
copyrightElement = document.getElementById('CopyrightNotice');
copyrightElement.style.display = 'block';
};
</script><script>
$(function() {
$( "#tabs" ).tabs();
});
</script></head>
<body>
<link rel="stylesheet" type="text/css" href="../Style/APIHelp.css">
<h1 class="api">AdditiveSetupUtility.splitSupport Method<img src="../images/TestTubeLarge.png"></h1>
Parent Object: <a href="AdditiveSetupUtility.htm">AdditiveSetupUtility</a><p class="api-preview"><img src="../images/TestTubeSmall.png" alt="Preview">This functionality is provided as a preview
of intended future API capabilities. You are encouraged to use it and report any problems or suggestions using the
<a href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/bd-p/22">Fusion API and Scripts</a> forum.<br><br>
Because this is a preview of future functionality, there is the possibility that it will change, which will possibly
break any existing programs that use this functionality. Because of that, you should never deliver any programs that use
any preview capabilities. For a distributed program, you should wait until it has moved from preview to released state.
</p><br>Defined in namespace "adsk::cam" and the header file is <Cam/ModifyUtility/AdditiveSetupUtility.h><h2 class="api">
Description
</h2>
<p class="api">Splits support structure of given target bodies into separate mesh body.</p>
<h2 class="api">
Syntax
</h2>
<div id="tabs">
<ul>
<li><a href="#Python">Python</a></li>
<li><a href="#C++">C++</a></li>
</ul>
<div id="Python" class="api-code">
<table class="api-code">
<td>"additiveSetupUtility_var" is a variable referencing an <a href="AdditiveSetupUtility.htm">AdditiveSetupUtility</a> object.<code><pre class="api-code">returnValue = additiveSetupUtility_var.<b>splitSupport</b>(targets, splitType)</pre></code></td>
</table>
</div>
<div id="C++" class="api-code">
<table class="api-code">
<td>"additiveSetupUtility_var" is a variable referencing an <a href="AdditiveSetupUtility.htm">AdditiveSetupUtility</a> object.<br /><br /><code><pre class="api-code">#include <Cam/ModifyUtility/AdditiveSetupUtility.h><br /><br />returnValue = additiveSetupUtility_var-><b>splitSupport</b>(targets, splitType);<br /></pre></code></td>
</table>
</div>
</div>
<h2 class="api">
Return Value
</h2>
<Table class="api-list">
<tr class="header">
<td class="api-list" style="width:1%;">
Type
</td>
<td class="api-list">
Description
</td>
</tr>
<tr>
<td class="api-list" style="white-space:nowrap;">boolean</td>
<td class="api-list">True on success, false on errors</td>
</tr>
</Table>
<h2 class="api">
Parameters
</h2>
<Table class="api-list">
<tr class="header">
<td class="api-list" style="width:1%;">
Name
</td>
<td class="api-list" style="width:1%;">
Type
</td>
<td class="api-list">
Description
</td>
</tr>
<tr>
<td class="api-list">targets</td>
<td class="api-list">Base[]</td>
<td class="api-list">Targets contain any input bodies whose support is to be inserted into a new mesh body. Input target must belong to the setup and must be part of the associated manufacturing model. Raises an error if any input target is not part of the setup or is not part of the associated manufacturing model.</td>
</tr>
<tr>
<td class="api-list">splitType</td>
<td class="api-list"><a href="SplitSupportTypes.htm">SplitSupportTypes</a></td>
<td class="api-list">The splitType defines the behavior for support that contains solid and open mesh geometry.</td>
</tr>
</Table>
<h2 class="api">
Version
</h2>
Introduced in version September 2023<br><br><div id="CopyrightNotice" style="display:none;">
<hr>
<table width="100%" style="font-size:15">
<tr>
<td align="left">
© Copyright 2025 Autodesk, Inc.
</td>
<td align="right"><a href="mailto:mfg.api.help.comments@autodesk.com?subject=Fusion%20May 2025%20API%20Help%20(AdditiveSetupUtility.splitSupport%20Function%20Help%20Topic)">Comment on this page.</a></td>
</tr>
</table>
</div>
</body>
</html>