function d = p01_fd ( p ) %% P01_FD is a signed distance function for problem 1. % % Modified: % % 06 February 2006 % % Parameters: % % Input, real P, one or more points. % % Output, real D, the signed distance of each point to the boundary of the region. % d = sqrt ( sum ( p.^2, 2 ) ) - 1.0;