Phil Smith

Results 28 comments of Phil Smith

Maybe. I was looking at my hand-crafted function and thinking about how I would generalize it to allow the functions themselves to be interpolators (and so, to allow things to...

Right, so here's a general, but possibly unperformant implementation: ``` function interpolateMeta(a, b) { return (alpha) => interpolate(a(1 - alpha), b(alpha)); } ``` Here we do the interpolation in the...

Err, excuse me. My `interpolateMeta` doesn't look that bad on performance, but it does assume the domains of `a` and `b` are in the unit interval. The thing I was...

Sorry, last one. Upon third reading, my `interpolateMeta` is simply _wrong_ (for example, `interpolate(a, b)(0) != a`.) `interpolateAnyDomainAndCodomain` does what was intended.

The motivation is visually intuitive non-linear transforms of unit square patches (linear transforms are already easy directly with SVG.) The unit square restriction may look odd, but it makes what...

Hello, I am also seeing this error. Here is the relevant snippet of config.log: https://gist.github.com/2821907 . As you can see, the linker is failing because it does not understand the...

This seems to work for me (on osx) ``` --- a/m4/boost.m4 +++ b/m4/boost.m4 @@ -403,7 +403,7 @@ dnl generated only once above (before we start the for loops). LDFLAGS=$boost_save_LDFLAGS LIBS=$boost_save_LIBS...

Ah. I just noticed issue 19 and pull request 28. The diff from pull 28 (which uses a space instead of a comma following `-rpath`) also works for me. I...

The patch you suggest at https://github.com/tsuna/boost.m4/commit/ab159194e1207c04668c79eed57ba618ceb17484 works for me. I have `AC_PROG_LIBTOOL` declared before `BOOST_REQUIRE` in `configure.ac`

After reading http://lists.gnu.org/archive/html/libtool/2007-11/msg00017.html and http://lists.gnu.org/archive/html/autoconf/2004-09/msg00031.html on a lark I decided to monkey-patch libtool in directly, and it worked: ``` diff --git a/m4/boost.m4 b/m4/boost.m4 index 3d4e47c..836a5e3 100644 --- a/m4/boost.m4 +++ b/m4/boost.m4...