gethtvolume.m

来自「matlab aamtool box」· M 代码 · 共 17 行

M
17
字号
function [vs] = getHTVolume()
% [vs] = getHTVolume()
% Utility function to obtain a  volume structure to be used with
% the function hapticTool. hapticTool internally uses hapticToolMex which 
% in turn uses the h3d scene graph api 
% 
% Author: Johann Strasser
% Date: 070129 (YYMMDD)
% 
% Revision #1

vs.name = 'volume';
vs.parentTransform = 'world';
vs.volume = [];
vs.planes = 256;
vs.voxelSize = [0.001, 0.001, 0.001];
vs.hapticChannel = 'green';

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?