-
Notifications
You must be signed in to change notification settings - Fork 47
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed circuit bounding box management #149
Conversation
brayns/io/MorphologyLoader.cpp
Outdated
@@ -995,6 +1030,12 @@ bool MorphologyLoader::importSimulationData(const servus::URI& circuitConfig, | |||
return true; | |||
} | |||
|
|||
bool MorphologyLoader::_positionInCircuitBoundingBox(const Vector3f& position) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const function?
Aren't you using brain for accessing the circuit data? I have the feeling that if you did your code would be simpler. At the same time, there's no function there to find out the bounding box of the circuit, but it could and maybe should be added. |
I am using brain indeed, in the importCircuit methods. What makes you think I am not? |
True, now that I look again there're some identifiers inside the brain namespace. I just took a quick look but the lines with mv3support? seemed fishy to me. Why do you have to make a distinction? |
I totally agree with you regarding the mvd3support, I did that because I needed to get the layer, m-type, e-type, etc of the neuron and as far as I understand, this is currently only supported in brion. If there is a way to get this information in brain, I am happy to modify the code. |
Ping |
No description provided.