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
/
src
/
molecule3d
/
MarkerContact.ts
13 lines
(9 loc)
•
260 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{ Vec3 } from
"@chemistry/math"
; export
class
MarkerContact
{
public
position1: Vec3;
public
position2: Vec3;
constructor
(position1: Vec3, position2: Vec3) {
this
.position1 = position1;
this
.position2 = position2; } }