UNPKG
@chemistry/mol3dview
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
2.0.5
2.0.4
Crystal Structure Viewer
github.com/vreshch/mol3dview
vreshch/mol3dview
@chemistry/mol3dview
/
dist
/
src
/
molecule3d
/
Marker.d.ts
9 lines
(8 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Matrix3
x4,
Vec3
}
from
"@chemistry/math"
;
import
{
CellAtom
}
from
"./CellAtom"
;
export
declare
class
Marker
{
position
:
Vec3
;
symetry
:
Matrix3
x4;
cellAtom
:
CellAtom
;
constructor
(
position
:
Vec3
,
symetry
:
Matrix3
x4,
cellAtom
:
CellAtom
); }