Crates.io | pathtracer |
lib.rs | pathtracer |
version | 0.6.5 |
source | src |
created_at | 2020-03-14 09:18:11.495208 |
updated_at | 2020-03-14 09:18:11.495208 |
description | Create nodes, clusters of nodes and connection in between. |
homepage | |
repository | https://github.com/pontuslae/pathtracer |
max_upload_size | |
id | 218506 |
size | 124,488 |
Previously named pathfinder, but that name was requested and handed over to the servo/pathfinder project.
Graph large number of Connected Nodes mapped on to an Image or Gif.
The Logo is generated using the library, the implementation can be found in the examples directory.
Placing positioned objects on to an Image can cause many issue. This library is meant to ease interacting with images and create higher order abstractions which makes it easy to populate larger Image surfaces with large number of surface objects.
Place greater number of Nodes using Groups. A Group is structure which encapsulates many Nodes.
use pathtracer::{Group, map};
use std::path::Path;
let mut groups = Group::from_list(&[(0, 0), (100, 100)]);
for group in groups.iter_mut() {
group.add(100);
}
Map::new()
.map(&groups)
.save(&Path::new("out.png"));
Path through a list of connected nodes. Generate a list of generic nodes, that are then linked in indexed order, then we create a network out of the Nodes, and confirm that the first node is connected to the last.
let pos = [(0, 0), (100, 100), (150, 50), (2000, 4000), (400, 600)];
let nodes = Node::from_list(&pos); // Generic Nodes are named in sequence: A-Z.
let nodes = Node::linked_list(nodes);
let net = Network::new(nodes);
let path = net.path("A", "E");
node::path_print(&path?);
These examples are generated from examples located in the repository.