Skip to contents

A simplified mesh3d object representing the brain neuropil volume from the BANC connectome dataset. This mesh has been decimated to approximately 50% of its original face count for efficient visualisation.

Usage

banc.brain_neuropil

Format

A mesh3d object containing vertices and faces defining the 3D surface of the Drosophila brain neuropil.

Source

BANC connectome dataset, decimated using Rvcg::vcgQEdecim.

References

Bates, A. S., Phelps, J. S., Kim, M., Yang, H. H., Matsliah, A., Ajabi, Z., Perlman, E., Dunne, J., Roat, J., Joyce, P., Bogovic, J. A., Jefferis, G. S. X. E., Murthy, M., Card, G., & The FlyWire Consortium. (2025). Distributed control circuits across a brain-and-cord connectome. bioRxiv. doi:10.1101/2025.07.31.667571

Examples

if (FALSE) { # \dontrun{
library(nat.ggplot)
library(ggplot2)

# Plot brain neuropil with default view
ggplot() +
  geom_neuron(banc.brain_neuropil,
              cols = c("grey75", "grey50"),
              alpha = 0.3)

# Plot with frontal view
ggplot() +
  geom_neuron(banc.brain_neuropil,
              rotation_matrix = banc_view,
              cols = c("grey75", "grey50"),
              alpha = 0.3)
} # }