Skip to content
Snippets Groups Projects
Commit 914e4d35 authored by Alexander Rose's avatar Alexander Rose
Browse files

fix missing underscore

parent f4046584
No related branches found
No related tags found
No related merge requests found
...@@ -84,7 +84,7 @@ export class StructureLookup3D implements Lookup3D<Element> { ...@@ -84,7 +84,7 @@ export class StructureLookup3D implements Lookup3D<Element> {
_boundary: { box: Box3D; sphere: Sphere3D; } | undefined = void 0; _boundary: { box: Box3D; sphere: Sphere3D; } | undefined = void 0;
get boundary() { get boundary() {
if (this.boundary) return this._boundary!; if (this._boundary) return this._boundary!;
this._boundary = computeStructureBoundary(this.structure); this._boundary = computeStructureBoundary(this.structure);
return this._boundary!; return this._boundary!;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment