Skip to content
Snippets Groups Projects
Select Git revision
  • 920b48b25e147a6174bd3b53f78cc8f4475e0c97
  • master default protected
  • base-pairs-ladder
  • rednatco-v2
  • rednatco
  • test
  • ntc-tube-uniform-color
  • ntc-tube-missing-atoms
  • restore-vertex-array-per-program
  • watlas2
  • dnatco_new
  • cleanup-old-nodejs
  • webmmb
  • fix_auth_seq_id
  • update_deps
  • ext_dev
  • ntc_balls
  • nci-2
  • plugin
  • bugfix-0.4.5
  • nci
  • v0.5.0-dev.1
  • v0.4.5
  • v0.4.4
  • v0.4.3
  • v0.4.2
  • v0.4.1
  • v0.4.0
  • v0.3.12
  • v0.3.11
  • v0.3.10
  • v0.3.9
  • v0.3.8
  • v0.3.7
  • v0.3.6
  • v0.3.5
  • v0.3.4
  • v0.3.3
  • v0.3.2
  • v0.3.1
  • v0.3.0
41 results

generic.ts

Blame
  • 3d.ts 1.05 KiB
    /**
     * Copyright (c) 2017-2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
     *
     * @author David Sehnal <david.sehnal@gmail.com>
     * @author Alexander Rose <alexander.rose@weirdbyte.de>
     */
    
    /*
     * This code has been modified from https://github.com/toji/gl-matrix/,
     * copyright (c) 2015, Brandon Jones, Colin MacKenzie IV.
     *
     * Permission is hereby granted, free of charge, to any person obtaining a copy
     * of this software and associated documentation files (the "Software"), to deal
     * in the Software without restriction, including without limitation the rights
     * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     * copies of the Software, and to permit persons to whom the Software is
     * furnished to do so, subject to the following conditions:
     */
    
    import Mat4 from './3d/mat4'
    import Mat3 from './3d/mat3'
    import Vec2 from './3d/vec2'
    import Vec3 from './3d/vec3'
    import Vec4 from './3d/vec4'
    import Quat from './3d/quat'
    import { EPSILON } from './3d/common'
    
    export { Mat4, Mat3, Vec2, Vec3, Vec4, Quat, EPSILON }