你已经派生过 geomesh
镜像自地址
https://gitee.com/sduem/geomesh.git
已同步 2025-08-06 11:16:50 +08:00
13
lib/AndInterpolationCurve.m
普通文件
13
lib/AndInterpolationCurve.m
普通文件
@@ -0,0 +1,13 @@
|
||||
function objectIPC = AndInterpolationCurve(model,filenames)
|
||||
%Interpolating curves are added, which can be used to construct 3D irregular volumes
|
||||
for n = 1:size(filenames,1)
|
||||
IPCname =['ipc' num2str(n)];
|
||||
model.geom('geom1').create(IPCname, 'InterpolationCurve');
|
||||
model.geom('geom1').feature(IPCname).set('type', 'closed');
|
||||
model.geom('geom1').feature(IPCname).set('source', 'file');
|
||||
model.geom('geom1').feature(IPCname).set('filename', filenames{n});
|
||||
model.geom('geom1').feature(IPCname).set('struct', 'sectionwise');
|
||||
objectIPC{n} = IPCname;
|
||||
end
|
||||
model.geom('geom1').run;
|
||||
|
在新工单中引用
屏蔽一个用户