Commit b7f8c75956f73182d23f82f83e4ff63c8d614ccd

Authored by David Mayerich
1 parent 9e5edd36

updated the depricated network file names

python/network.pyc deleted
No preview for this file type
python/network.py renamed to python/network_dep.py
python/network_dpy.py deleted
1   -# -*- coding: utf-8 -*-
2   -"""
3   -Created on Sat Jan 19 2018
4   -
5   -@author: Jiabing
6   -"""
7   -
8   -import struct
9   -import numpy as np
10   -import scipy as sp
11   -import networkx as nx
12   -import matplotlib.pyplot as plt
13   -import math
14   -
15   -
16   -
17   -alkjasfdljkhfsadlkjhfsad
18   -class Point:
19   - def __init__(self, x, y, z, radius):
20   - self.x = x
21   - self.y = y
22   - self.z = z
23   - self.r = radius
24   -
25   -
26   -class Fiber:
27   - def __init__(self, fiber_idx,point_idx):
28   - self.fidx = fiber_idx
29   - self.pidx = point_idx
30   -
31   -
32   -
33   -class Node:
34   - def __init__(self, point_idx, fidx):
35   - self.pidx= point_idx
36   - self.fidx = fidx
37   -
38   -
39   -#class NWT:
40   -
41   -#class network(point, Fiber, Node):