nrbreverse.m
来自「强大的nurbs的工具箱 nurbs曲线」· M 代码 · 共 42 行
M
42 行
function rnrb = nrbreverse(nrb)
%
% Function Name:
%
% nrbreverse - Reverse the evaluation direction of a NURBS curve or surface.
%
% Calling Sequence:
%
% rnrb = nrbreverse(nrb);
%
% Parameters:
%
% nrb : NURBS data structure, see nrbmak.
%
% rnrb : Reversed NURBS.
%
% Description:
%
% Utility function to reverse the evaluation direction of a NURBS
% curve or surface.
% D.M. Spink
% Copyright (c) 2000.
if nargin ~= 1
error('Incorrect number of input arguments');
end
if iscell(nrb.knots)
% reverse a NURBS surface
coefs = nrb.coefs(:,:,end:-1:1);
rnrb = nrbmak(coefs(:,end:-1:1,:), {1.0-fliplr(nrb.knots{1}),...
1.0-fliplr(nrb.knots{2})});
else
% reverse a NURBS curve
rnrb = nrbmak(fliplr(nrb.coefs), 1.0-fliplr(nrb.knots));
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?