GithubHelp home page GithubHelp logo

Comments (1)

alecjacobson avatar alecjacobson commented on July 24, 2024

I think I currently have something like that in ordered_outline. I probably
should use dfsearch instead of shortest path

On Monday, 7 November 2016, Andrea [email protected] wrote:

I am not sure when they added these, but it's quite neat!
[image: ordered_boundary]
https://cloud.githubusercontent.com/assets/4480573/20084455/509fd428-a517-11e6-939f-98a1d325f4a4.gif

clc; clear; close all;
load myoutline.mat M;
V = M.vertices;
F = M.faces;
B = mesh_boundary(F);

%--- Order
nv = max(B(:));
is = B(:,1);
js = B(:,2);
vs = ones(size(is,1),1);
A = sparse(is,js,vs,nv,nv);
A = A+A'; %< undirected
G = graph(A);
O = dfsearch(G,B(1,1));

point2 = @(P,varargin) plot(P(:,1), P(:,2), varargin{:});
figure(2); patch(M,'facecolor','none'); axis equal; hold on;
xlim([-0.5 +1.5]); axis off; set(gcf,'color','white');
for i=1:size(O,1)
point2(V(O(i),:), '.r', 'markersize',10);
gif_add_frame(gca,'ordered_boundary.gif');
end


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#21, or mute the thread
https://github.com/notifications/unsubscribe-auth/ACI0mRFlGzSQWPa34OEvJRZkhztxT7OTks5q791fgaJpZM4Kr9kp
.

from gptoolbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.