Code covered by the BSD License  

Highlights from
Toolbox Graph

image thumbnail
from Toolbox Graph by Gabriel Peyre
A toolbox to perform computations on graph.

read_mfile(filename, type)
function [vertex, face, normal, uv, sphparam] = read_mfile(filename, type)

% read_mfile - read Hughe Hoppe .m file.
%
%   [vertex, face, normal, uv, sphparam] = read_mfile(filename, type);
%
%   type can be 'mesh' (for traditional mesh file) or 'gim' (for geometry
%   image file) or 'sph' (for spherical parameterized mesh).
%
%   Copyright (c) 2007 Gabriel Peyre

if nargin<2
    type = 'mesh';
end

fid = fopen(filename);
if fid<0
    error('Unable to open file.');
end

switch lower(type)
    case {'gim' 'mesh'}
        A = fscanf(fid, 'Vertex %d %f %f %f {normal=(%f %f %f) uv=(%f %f)}\n');
        A = reshape(A, [9, length(A)/9]);
        vertex = A(2:4,:);
        normal = A(5:7,:);
        uv = A(8:9,:);
        sphparam = [];
    case 'sph'
        A = fscanf(fid, 'Vertex %d  %f %f %f {normal=(%f %f %f) sph=(%f %f %f) uv=(%f %f)}\n');
        A = reshape(A, [12, length(A)/12]);
        vertex = A(2:4,:);
        normal = A(5:7,:);
        sphparam = A(8:10,:);
        uv = A(11:12,:);
    otherwise
        error('Unknown format');
end
% read faces
A = fscanf(fid, 'Face %d %d %d %d\n');
A = reshape(A, [4, length(A)/4]);
face = A(2:end,:);

fclose(fid);

Contact us at files@mathworks.com