Commit Graph

269 Commits

Author SHA1 Message Date
Mike Bostock
a5105d8a64 Update dependencies. 2018-08-24 12:08:21 -07:00
Mike Bostock
84d0335443 Add forceRadial example. 2017-09-30 08:42:09 -07:00
Mike Bostock
0c2f3f466a 1.1.0 2017-09-30 08:35:58 -07:00
Mike Bostock
c1450d0d7f 1.0.7 2017-09-30 08:35:06 -07:00
Mike Bostock
b5ab2776b8 Update dependencies. 2017-09-30 08:34:55 -07:00
Mike Bostock
b20fa133c4 Fix #103. Update README. 2017-09-23 11:06:56 -07:00
Mike Bostock
5718530dd5 Rename local var. 2017-09-23 11:02:17 -07:00
Mike Bostock
6cadb82a47 Merge branch 'barnes-hut-coords' of https://github.com/vasturiano/d3-force-3d into vasturiano-barnes-hut-coords 2017-09-23 11:01:16 -07:00
Mike Bostock
cea22c8894 Update README. 2017-09-21 22:16:49 -07:00
Mike Bostock
40bd984ffa Add d3.forceRadial. 2017-09-21 22:15:37 -07:00
Vasco Asturiano
258b35d1a2 Correct weighted average in barnes-hut coordinates 2017-06-23 00:35:55 -07:00
Mike Bostock
c7d165a72e Update README. 2017-04-14 22:27:14 -07:00
Alexey Velikiy
2eaf0f07fa Add force removing note 2017-04-14 22:25:45 -07:00
Mike Bostock
95aa9b10cb 1.0.6 2017-03-10 10:05:18 -08:00
Mike Bostock
7b052fa041 Update UglifyJS. 2017-03-10 10:05:09 -08:00
Mike Bostock
9968e3780b 1.0.5 2017-02-28 09:29:39 -08:00
Mike Bostock
16b5e37e88 Update Rollup. 2017-02-28 09:29:30 -08:00
Mike Bostock
13af598703 Link to examples. 2017-01-21 09:52:14 -08:00
Mike Bostock
18a155deb6 1.0.4 2016-11-22 16:32:11 -08:00
Mike Bostock
08d3c611e2 Update README; related #72. 2016-11-09 15:11:14 -08:00
Mike Bostock
87b80afdb4 Fix #72 for d3.forceLink. 2016-11-09 15:09:35 -08:00
Ethan Jewett
a3288c7df5 Fix #72 for d3.forceManyBody 2016-11-09 14:53:05 -08:00
Ethan Jewett
dfc521aa8e Fix #72 for d3.forceCollide 2016-11-09 14:53:05 -08:00
Mike Bostock
af88310cb0 1.0.3 2016-10-07 09:16:09 -07:00
Mike Bostock
3a603b2f7f Update dependencies. 2016-10-07 09:15:55 -07:00
Mike Bostock
6994c92279 Better error for missing nodes.
Fixes d3/d3#3003.
2016-10-07 09:12:50 -07:00
Mike Bostock
7fdd1a8c36 Merge branch 'master' of https://github.com/steveharoz/d3-force into fix-collide-radius 2016-10-07 08:43:06 -07:00
Steve Haroz
19d0e8e897 reinitialize radii after collide.radius() (#63) 2016-10-07 09:18:50 -05:00
Mike Bostock
2687577dab Fix #61. 2016-09-27 09:19:14 -07:00
Mike Bostock
045d542d4f Fix #60. 2016-09-24 08:14:33 -07:00
Mike Bostock
84c8d74e06 Merge pull request #58 from nathanielw/patch-1
Fix typo in readme
2016-09-19 09:05:34 -07:00
Nathaniel Watson
50899c94f8 Fix typo in readme
"beeswam" -> "beeswarm"
2016-09-18 16:55:15 +12:00
Mike Bostock
92c8776b1a Clarify re-initialization. Related #53.
The text wasn’t clear here: it could be interpreted to mean when x.x (for
example) is called in getter mode, but re-initialization only happens when the
method is called in setter mode.
2016-08-16 12:10:52 -07:00
Mike Bostock
ae98041ebc Merge pull request #52 from Devinsuit/master
Add links to source
2016-08-15 09:44:09 -07:00
Devinsuit
27053a96f9 Add links to source 2016-08-13 19:59:30 +03:00
Mike Bostock
e3c94a128f 1.0.2 2016-08-02 14:47:15 -07:00
Mike Bostock
3da261a5e1 Add module entry. Related rollup/rollup-plugin-node-resolve#48. 2016-08-02 14:47:14 -07:00
Mike Bostock
be633bea52 1.0.1 2016-07-29 15:45:19 -07:00
Mike Bostock
80927e0f2d Update postpublish, Rollup. 2016-07-29 15:45:15 -07:00
Mike Bostock
8b6cffa1c8 Update README. Related #38. 2016-07-28 08:42:30 -07:00
Mike Bostock
af1d2b8c86 Update README. Fix #47. 2016-07-26 16:31:54 -04:00
Mike Bostock
e9a4a284cb Update README. Related d3/d3#2881. 2016-06-30 12:23:02 -07:00
Mike Bostock
b6d4dfec29 1.0.0 2016-06-24 10:43:18 -07:00
Mike Bostock
29ad3e14e6 Prepare for major release. 2016-06-24 10:43:11 -07:00
Mike Bostock
c69a91aec5 Add phyllotaxis image. 2016-06-20 15:26:49 -07:00
Mike Bostock
3c00395e78 Rename drag to velocity decay. 2016-06-20 14:02:30 -07:00
Mike Bostock
44c73909ee Simplify node-fixing API.
Rather than storing separate state for the nodes’ fixed positions, just use the
fx and fy properties on the nodes themselves. This is more similar to the 3.x
API which used node.fixed (and node.px, node.py to store the previous position).
This eliminates the need to expose additional APIs for getting, setting,
clearing and iterating over the fixed positions.

Fixes #35.
2016-06-20 13:50:42 -07:00
Mike Bostock
145250d68b 0.7.1 2016-06-19 09:25:07 -07:00
Mike Bostock
88aa802ab3 Update dependencies. 2016-06-19 09:25:07 -07:00
Mike Bostock
11a3c6fb86 Tag as d3-module. Related d3/d3#2827. 2016-06-14 09:23:27 -07:00