nrbtransp.m
来自「强大的nurbs的工具箱 nurbs曲线」· M 代码 · 共 30 行
M
30 行
function tsrf = nrbtransp(srf)
%
% Function Name:
%
% nrbtransp - Transpose a NURBS surface, by swapping U and V directions.
%
% Calling Sequence:
%
% tsrf = nrbtransp(srf)
%
% Parameters:
%
% srf : NURBS surface, see nrbmak.
%
% tsrf : NURBS surface with U and V diretions transposed.
%
% Description:
%
% Utility function that transposes a NURBS surface, by swapping U and
% V directions. NURBS curves cannot be transposed.
% D.M. Spink
% Copyright (c) 2000.
if ~iscell(srf.knots)
error(' A NURBSs curve cannot be transposed.');
end
tsrf = nrbmak(permute(srf.coefs,[1 3 2]), fliplr(srf.knots));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?