Unity3D显示Kinect线条图

来源:互联网 发布:solaris10网络配置 编辑:程序博客网 时间:2024/04/29 16:20

1. 场景

    场景中包含以下内容:

   


2. C#脚本

     C#脚本绑定在Main Camera上,其代码如下:

using UnityEngine;using System.Collections;using System.IO;using System;public class PointManController : MonoBehaviour {public GameObject Hip_Center;public GameObject Spine;public GameObject Shoulder_Center;public GameObject Head;public GameObject Shoulder_Left;public GameObject Elbow_Left;public GameObject Wrist_Left;public GameObject Hand_Left;public GameObject Shoulder_Right;public GameObject Elbow_Right;public GameObject Wrist_Right;public GameObject Hand_Right;public GameObject Hip_Left;public GameObject Knee_Left;public GameObject Ankle_Left;public GameObject Foot_Left;public GameObject Hip_Right;public GameObject Knee_Right;public GameObject Ankle_Right;public GameObject Foot_Right;private GameObject[] nodes; private int BONE_POINTS_COUNT=20;private VectorLine bodyLine;private VectorLine leftHandLine;private VectorLine rightHandLine;private VectorLine leftLegLine;private VectorLine rightLegLine;private Vector3[] bodyPoints;private Vector3[] leftHandPoints;private Vector3[] rightHandPoints;private Vector3[] leftLegPoints;private Vector3[] rightLegPoints;private int BODY_POINTS_COUNT=4;private int HAND_POINTS_COUNT=5;private int LEG_POINTS_COUNT=5;private int ENLARGE_SIZE = 100;private StreamReader reader;private float time=0;// Use this for initializationvoid Start () {nodes = new GameObject[20] {Hip_Center, Spine, Shoulder_Center, Head,Shoulder_Left, Elbow_Left, Wrist_Left, Hand_Left,Shoulder_Right, Elbow_Right, Wrist_Right, Hand_Right,Hip_Left, Knee_Left, Ankle_Left, Foot_Left,Hip_Right, Knee_Right, Ankle_Right, Foot_Right};int lineWidth = 2;// init points and linesbodyPoints = new Vector3[BODY_POINTS_COUNT];bodyLine = new VectorLine("Line",bodyPoints,Color.red,null,lineWidth,LineType.Continuous);leftHandPoints = new Vector3[HAND_POINTS_COUNT];leftHandLine = new VectorLine("Line",leftHandPoints,Color.red,null,lineWidth,LineType.Continuous);rightHandPoints = new Vector3[HAND_POINTS_COUNT];rightHandLine = new VectorLine("Line",rightHandPoints,Color.red,null,lineWidth,LineType.Continuous);leftLegPoints = new Vector3[LEG_POINTS_COUNT];leftLegLine = new VectorLine("Line",leftLegPoints,Color.red,null,lineWidth,LineType.Continuous);rightLegPoints = new Vector3[LEG_POINTS_COUNT];rightLegLine = new VectorLine("Line",rightLegPoints,Color.red,null,lineWidth,LineType.Continuous);// init stream readerreader = new StreamReader("data.txt");readFrameData ();}// Update is called once per framevoid Update () {time += Time.deltaTime;if (time >= 0.1) {readFrameData();time = 0;}bodyLine.Draw3D ();leftHandLine.Draw3D ();rightHandLine.Draw3D ();leftLegLine.Draw3D ();rightLegLine.Draw3D ();}bool readFrameData(){string str;str = reader.ReadLine ();if (null == str) {return false;}// parse a frame datastring [] split = str.Split(new Char [] { ':' });print ("The points number is:" + split.GetLength(0));if( split.GetLength(0) != BONE_POINTS_COUNT+1 ){print("The points number(" + split.GetLength(0) + ")" + "is not " + BONE_POINTS_COUNT);return false;}else{int i  = 0;foreach (string s in split) {if (s.Trim() != ""){string [] split2 = s.Split( new Char[] {','});string sx = split2[0];string sy = split2[1];string sz = split2[2];float fx = Convert.ToSingle(sx) * ENLARGE_SIZE;float fy = Convert.ToSingle(sy) * ENLARGE_SIZE;float fz = Convert.ToSingle(sz) * ENLARGE_SIZE;setPointData(i,fx,fy,fz);//print( i + ":" + fx + "," + fy + "," + fz + ":");}i++;}}return true;}void setPointData(int i,float x, float y, float z){    // i is the JointID (0 -19)int index;if (i >= 0 & i <= 3) {// BodybodyPoints[i].x = x;bodyPoints[i].y = y;bodyPoints[i].z = z;if(2 == i){leftHandPoints [0] = bodyPoints [2];rightHandPoints [0] = bodyPoints [2];}else if(0 == i){leftLegPoints [0] = bodyPoints [0];rightLegPoints [0] = bodyPoints [0];}nodes[i].transform.position = bodyPoints[i];}else if (i >= 4 & i <= 7) {// Left handindex = i - 3;leftHandPoints[index].x = x;leftHandPoints[index].y = y;leftHandPoints[index].z = z;nodes[i].transform.position = leftHandPoints[index];}else if (i >= 8 & i <= 11) {// Right handindex = i - 7;rightHandPoints[index].x = x;rightHandPoints[index].y = y;rightHandPoints[index].z = z;nodes[i].transform.position = rightHandPoints[index];}else if (i >= 12 & i <= 15) {// Left Legindex = i - 11;leftLegPoints[index].x = x;leftLegPoints[index].y = y;leftLegPoints[index].z = z;nodes[i].transform.position = leftLegPoints[index];}else if (i >= 16 & i <= 19) {// Right Legindex = i - 15;rightLegPoints[index].x = x;rightLegPoints[index].y = y;rightLegPoints[index].z = z;nodes[i].transform.position = rightLegPoints[index];}}}

3. 数据格式及示例

     data.txt内容如下所示,每行20个点的(x,y,z)数据,以:作为分隔符。

0.115766,-0.46342,1.94549:-0.114427,-0.712628,2.00614:-0.113025,-0.781415,1.93324:0.0537193,-0.0108988,1.87852:0.0988975,-0.457775,1.9376:0.123288,-0.774656,2.01414:0.0989169,-0.856264,2.01175:-0.0272933,0.0649716,1.87773:-0.0299136,0.1323,1.88975:-0.0421277,0.471816,1.87807:-0.0443063,0.644484,1.80578:-0.216762,0.373947,1.88734:-0.282722,0.11461,1.90761:-0.27113,-0.11331,1.8573:-0.267617,-0.199042,1.83798:0.130726,0.381691,1.89094:0.210698,0.116586,1.92565:0.223447,-0.108202,1.87865:0.221286,-0.179738,1.85562:-0.102743,-0.0152894,1.87216:-0.115785,-0.463528,1.9453:-0.11433,-0.712447,2.00601:-0.112966,-0.781288,1.93311:0.0538245,-0.0110195,1.87809:0.0988721,-0.457701,1.93738:0.123223,-0.775479,2.01427:0.0982247,-0.85685,2.01015:-0.0272863,0.0649529,1.87765:-0.0299088,0.132286,1.88953:-0.0421365,0.471807,1.87784:-0.0443244,0.644558,1.80554:-0.21676,0.373927,1.88709:-0.282693,0.114626,1.90757:-0.271114,-0.113398,1.85716:-0.267577,-0.199188,1.83793:0.130734,0.381662,1.89068:0.210708,0.11654,1.92556:0.223481,-0.108284,1.87848:0.221229,-0.17975,1.8554:-0.10274,-0.0153102,1.8721:-0.115787,-0.463544,1.94527:-0.114298,-0.712448,2.00599:-0.112945,-0.781282,1.93309:0.0538403,-0.0110385,1.87802:0.0988673,-0.457686,1.93734:0.12321,-0.775564,2.01428:0.0981492,-0.856913,2.00987:-0.0272809,0.0649359,1.87759:-0.0299053,0.132272,1.88932:-0.0421582,0.471819,1.87756:-0.044387,0.644636,1.8053:-0.216771,0.373886,1.88672:-0.283772,0.114458,1.90723:-0.298502,-0.119531,1.82887:-0.295304,-0.201038,1.80571:0.130666,0.381635,1.89019:0.212817,0.116942,1.92367:0.22997,-0.106439,1.86898:0.228074,-0.176238,1.84151:-0.102737,-0.0153293,1.87205:-0.115797,-0.463464,1.94519:-0.114261,-0.712448,2.00597:-0.112905,-0.781289,1.93306:0.0538521,-0.0110533,1.87797:0.0988632,-0.457675,1.93731:0.123266,-0.774995,2.01411:0.0983085,-0.8567,2.00976:-0.0271565,0.065324,1.87784:-0.0298402,0.132523,1.88918:-0.0421932,0.471876,1.87734:-0.0449955,0.644918,1.80539:-0.216884,0.373989,1.88625:-0.340511,0.175749,1.85676:-0.415159,0.0727828,1.65197:-0.431793,0.0345908,1.55345:0.130453,0.382006,1.88944:0.263225,0.188839,1.8472:0.329595,0.0513974,1.66277:0.346466,-0.00851591,1.58674:-0.102625,-0.0149367,1.8724:-0.116208,-0.458659,1.94318:-0.114239,-0.712424,2.00591:-0.112878,-0.781251,1.93296:0.0541615,-0.0105471,1.87847:0.101504,-0.451218,1.93411:0.123334,-0.774614,2.01381:0.113663,-0.846656,1.97117:-0.0265527,0.0666579,1.87931:-0.0294033,0.133487,1.89002:-0.0420847,0.472189,1.8796:-0.046589,0.644943,1.80812:-0.216874,0.374318,1.88546:-0.361707,0.262603,1.73842:-0.274063,0.356207,1.46935:-0.233936,0.400433,1.41944:0.130097,0.383463,1.88809:0.27451,0.297414,1.71976:0.299862,0.313793,1.47176:0.296236,0.334027,1.39095:-0.102029,-0.0137578,1.87359:-0.11803,-0.442335,1.93293:-0.114304,-0.711515,2.00389:-0.112854,-0.780368,1.93097:0.0550863,-0.0089237,1.8803:0.105763,-0.442757,1.92808:0.123604,-0.772911,2.01188:0.121998,-0.839729,1.94809:-0.0243091,0.0680303,1.88075:-0.0278906,0.134372,1.89189:-0.0425944,0.470629,1.88593:-0.0431962,0.640148,1.81961:-0.20584,0.371685,1.87877:-0.306176,0.358931,1.63269:-0.100926,0.46338,1.51286:-0.0309509,0.493789,1.49704:0.128229,0.385041,1.88561:0.263188,0.39574,1.62658:0.178095,0.53542,1.44442:0.158064,0.585645,1.35648:-0.0962401,-0.00912088,1.87478:-0.11372,-0.407868,1.90176:-0.114887,-0.698986,1.97658:-0.113893,-0.767416,1.9031:0.0585014,-0.00573793,1.88158:0.11991,-0.415912,1.90485:0.125511,-0.752944,1.99302:0.12861,-0.824749,1.922:-0.00422981,0.0625968,1.87789:-0.00799759,0.128968,1.89085:-0.0372186,0.467034,1.89045:-0.0397028,0.635351,1.83563:-0.176186,0.398607,1.88525:-0.19913,0.257448,1.7602:-0.0871101,0.321917,1.59105:-0.0154731,0.384231,1.5576:0.128794,0.392729,1.85334:0.162323,0.391372,1.56967:-0.103122,0.52918,1.5976:-0.17468,0.599025,1.58474:-0.0741912,-0.00997676,1.87161:-0.0924146,-0.389095,1.86033:-0.106122,-0.681058,1.9286:-0.12109,-0.74617,1.85501:0.0785185,-0.00251425,1.87678:0.142953,-0.396041,1.87485:0.132194,-0.736307,1.9648:0.126842,-0.811232,1.89635:0.0109102,0.0578459,1.87358:0.00702112,0.126431,1.88763:-0.0265442,0.479398,1.88356:-0.0323713,0.642581,1.84758:-0.16521,0.409877,1.86033:-0.130966,0.308489,1.64366:-0.0122815,0.405973,1.42213:0.0587856,0.431912,1.41011:0.124437,0.401826,1.79179:0.207093,0.286744,1.60097:-0.0476445,0.416401,1.64109:-0.146006,0.504116,1.63402:-0.0576115,-0.0131402,1.86822:-0.0790675,-0.39029,1.8404:-0.100929,-0.673404,1.90649:-0.123609,-0.739478,1.83961:0.0931628,-0.00277127,1.87117:0.15549,-0.391562,1.86104:0.134793,-0.732056,1.95481:0.125415,-0.805624,1.88352:0.0220236,0.0618442,1.86749:0.0182043,0.133287,1.88028:-0.0182138,0.500996,1.8702:-0.0211947,0.659144,1.84923:-0.146766,0.427865,1.86173:-0.16784,0.29556,1.6177:-0.0631374,0.375672,1.39146:0.00320338,0.405999,1.38476:0.146406,0.423459,1.79504:0.129984,0.356494,1.57887:-0.113604,0.332811,1.60266:-0.21297,0.332028,1.60826:-0.0502791,-0.0122527,1.86573:-0.0745864,-0.391036,1.83638:-0.0995207,-0.674918,1.90632:-0.12337,-0.740532,1.83786:0.108173,0.000789585,1.86316:0.160822,-0.388119,1.85495:0.136301,-0.729073,1.94973:0.125986,-0.802279,1.87629:0.0269923,0.0649896,1.86395:0.0230928,0.136335,1.87749:-0.0115897,0.505125,1.86742:-0.0178441,0.661354,1.8505:-0.136051,0.44027,1.86711:-0.231033,0.296838,1.6217:-0.0806977,0.386643,1.46821:0.0174953,0.429038,1.43114:0.145777,0.416952,1.81721:0.165344,0.421118,1.58951:-0.0203318,0.325593,1.55604:-0.117443,0.323676,1.57431:-0.0461497,-0.00656341,1.86212:-0.0748663,-0.392894,1.84704:-0.101085,-0.685442,1.93099:-0.123047,-0.75335,1.86287:0.111872,0.00525434,1.85896:0.161063,-0.387704,1.85654:0.137507,-0.727725,1.94853:0.126324,-0.799772,1.87194:0.0261788,0.0723112,1.86044:0.0229535,0.141148,1.87496:-0.00905653,0.502969,1.86349:-0.0201904,0.652568,1.825:-0.166833,0.404089,1.85107:-0.343743,0.323119,1.67417:-0.285808,0.392014,1.46788:-0.257928,0.430031,1.41951:0.147743,0.416024,1.83057:0.298922,0.401596,1.68197:0.199871,0.517396,1.5287:0.150654,0.559324,1.49834:-0.0485808,-0.00039898,1.8582:-0.088312,-0.3963,1.87703:-0.104279,-0.699035,1.9622:-0.113634,-0.767571,1.89172:0.111129,0.00955337,1.85642:0.143019,-0.407794,1.88096:0.134481,-0.745372,1.96971:0.128869,-0.805816,1.88001:0.0162282,0.0761001,1.85671:0.0124688,0.143246,1.87038:-0.0153504,0.489374,1.85483:-0.027981,0.645081,1.80173:-0.193885,0.38301,1.84272:-0.419927,0.297604,1.73909:-0.504528,0.376617,1.56879:-0.522007,0.420237,1.51298:0.147756,0.410149,1.84415:0.338355,0.331543,1.80285:0.389395,0.422684,1.62413:0.394024,0.465034,1.5707:-0.0617913,-0.00113505,1.85285:-0.109192,-0.414916,1.8911:-0.106628,-0.701319,1.96796:-0.112245,-0.770146,1.89661:0.100449,0.00836137,1.85498:0.130518,-0.420511,1.88995:0.133511,-0.747951,1.9727:0.130243,-0.807191,1.88214:-0.00366159,0.0650994,1.84747:-0.0104381,0.129522,1.85758:-0.0341299,0.460926,1.84154:-0.0406574,0.633889,1.77947:-0.221969,0.356614,1.84169:-0.474938,0.247946,1.84921:-0.652484,0.289308,1.72207:-0.698926,0.309544,1.68028:0.135617,0.383049,1.87208:0.327391,0.244005,1.92966:0.502391,0.271467,1.78581:0.55137,0.303726,1.72699:-0.0829374,-0.0191972,1.83839:-0.121755,-0.437476,1.86873:-0.112873,-0.700007,1.93096:-0.106625,-0.767008,1.85737:0.0803169,-0.00805771,1.85084:0.124208,-0.429702,1.88148:0.130941,-0.740463,1.95619:0.132114,-0.805538,1.87872:-0.0159928,0.0537707,1.84037:-0.0236075,0.117635,1.84981:-0.0502004,0.440307,1.8362:-0.0514179,0.6225,1.76775:-0.236431,0.341463,1.84418:-0.483081,0.222446,1.90108:-0.684947,0.248094,1.78617:-0.743376,0.272918,1.73498:0.123138,0.360467,1.88882:0.322573,0.211484,1.96492:0.530189,0.247749,1.81501:0.584649,0.292391,1.74884:-0.0930172,-0.0330639,1.82781:-0.12455,-0.45114,1.84334:-0.114682,-0.698355,1.89809:-0.10387,-0.766637,1.8395:0.0688158,-0.0210815,1.84683:0.122291,-0.434332,1.8705:0.131622,-0.733832,1.94099:0.134926,-0.803102,1.87342:-0.0223689,0.0510316,1.83701:-0.0305429,0.114357,1.84753:-0.063019,0.43381,1.83941:-0.0712666,0.61968,1.77148:-0.246887,0.334536,1.84723:-0.471086,0.274799,1.82064:-0.599825,0.377331,1.62337:-0.621855,0.422295,1.56234:0.115911,0.357846,1.89409:0.334185,0.356323,1.8005:0.41086,0.496964,1.61229:0.415258,0.550527,1.55478:-0.0978846,-0.0373166,1.82312:-0.125745,-0.455288,1.83728:-0.116127,-0.695469,1.89231:-0.103617,-0.765801,1.83486:0.0631721,-0.0246595,1.84401:0.120434,-0.437113,1.86646:0.130178,-0.736484,1.94176:0.135381,-0.806355,1.8759:-0.0273828,0.0548522,1.83581:-0.0363029,0.118372,1.85076:-0.0751859,0.439003,1.84873:-0.085518,0.623719,1.78125:-0.253297,0.335139,1.84992:-0.413328,0.26626,1.72517:-0.284805,0.409273,1.47953:-0.265188,0.443282,1.4501:0.0985195,0.378887,1.87801:0.231162,0.461776,1.67239:0.200208,0.605135,1.52227:0.1679,0.663726,1.48117:-0.100614,-0.0314046,1.82131:-0.114268,-0.432566,1.85117:-0.113958,-0.693434,1.91771:-0.107634,-0.765087,1.85156:0.0589863,-0.0165631,1.84131:0.118491,-0.436267,1.86752:0.127464,-0.744842,1.95557:0.133655,-0.811639,1.88356:-0.0189352,0.0855812,1.83884:-0.0276765,0.152033,1.85606:-0.0718811,0.485023,1.83458:-0.088903,0.650057,1.78276:-0.238868,0.38227,1.82682:-0.357518,0.272057,1.66005:-0.182089,0.356938,1.49778:-0.0972001,0.362087,1.46693:0.0728311,0.421618,1.83334:0.159562,0.480601,1.59557:-0.00964989,0.612797,1.50795:-0.0251262,0.67295,1.47538:-0.0901992,0.00230519,1.8273:-0.103324,-0.391035,1.85936:-0.112963,-0.692333,1.93156:-0.110157,-0.762953,1.85998:0.0717083,0.0328479,1.84686:0.118673,-0.415674,1.87403:0.125936,-0.74257,1.96145:0.13095,-0.808924,1.88939:-0.0116488,0.0568504,1.84328:-0.0211243,0.137199,1.85531:-0.0739507,0.498875,1.82275:-0.0889694,0.66351,1.79843:-0.226767,0.365198,1.79373:-0.125071,0.251597,1.60142:0.11536,0.287503,1.54942:0.16987,0.297692,1.55169:0.0321149,0.421866,1.75701:-0.184245,0.441721,1.58374:-0.380883,0.421816,1.6296:-0.450972,0.45082,1.63629:-0.0746381,-0.0133772,1.8372:-0.101223,-0.385802,1.86086:-0.112417,-0.6912,1.93494:-0.11557,-0.760099,1.86326:0.069373,0.0175546,1.85175:0.1199,-0.410797,1.87533:0.125575,-0.742973,1.96525:0.126986,-0.809207,1.89336:-0.00334508,0.0265131,1.84694:-0.0132071,0.114355,1.85319:-0.0743284,0.505094,1.81789:-0.089773,0.668172,1.80317:-0.218701,0.339691,1.77199:0.0428146,0.272234,1.59422:0.325762,0.297046,1.59325:0.405791,0.301429,1.61195:0.0100386,0.409958,1.71131:-0.234753,0.405307,1.59439:-0.503175,0.448223,1.62022:-0.57483,0.46577,1.6375:-0.0617035,-0.0397962,1.84595:-0.100008,-0.398225,1.86037:-0.111938,-0.689246,1.93569:-0.120424,-0.756462,1.86275:0.0719178,-0.0068861,1.85398:0.121984,-0.409252,1.87547:0.125579,-0.743206,1.96661:0.125,-0.80932,1.89481:-0.000230352,0.0154237,1.84685:-0.0100594,0.103445,1.84872:-0.0741881,0.509568,1.81405:-0.0902919,0.671608,1.80611:-0.200907,0.343397,1.74398:0.112171,0.293062,1.59543:0.361309,0.347412,1.6349:0.429851,0.367186,1.65476:0.00129508,0.407884,1.69289:-0.136498,0.258413,1.59191:-0.295145,0.413258,1.6193:-0.365868,0.426186,1.63093:-0.0558035,-0.0473504,1.84626:-0.0988888,-0.404418,1.8586:-0.111395,-0.687074,1.93445:-0.122416,-0.7538,1.86114:0.0717454,-0.0170679,1.85379:0.124551,-0.409184,1.8746:0.125841,-0.744548,1.96776:0.123709,-0.810233,1.89602:0.00133892,0.0101221,1.84648:-0.00849856,0.0984839,1.84479:-0.0739539,0.512941,1.80988:-0.0890917,0.674766,1.80759:-0.202057,0.345014,1.75023:0.0816048,0.317539,1.60773:0.339113,0.347429,1.6413:0.41066,0.357955,1.65687:-0.00553896,0.407977,1.6804:-0.14573,0.243123,1.5834:-0.280877,0.413142,1.61693:-0.384476,0.436546,1.62998:-0.0522786,-0.050923,1.84552:-0.0986903,-0.408877,1.85705:-0.11118,-0.685028,1.9328:-0.129979,-0.749876,1.85929:0.0712653,-0.021332,1.85333:0.126647,-0.409665,1.87362:0.125932,-0.745153,1.96838:0.118927,-0.811059,1.89719:-0.00139096,0.0157422,1.84197:-0.0101168,0.100738,1.83864:-0.0742007,0.515383,1.8085:-0.0870792,0.67653,1.80751:-0.205624,0.388019,1.78865:-0.0280237,0.342009,1.54479:0.173075,0.397785,1.60346:0.283567,0.391982,1.62196:-0.0105117,0.40976,1.67184:-0.108046,0.295071,1.50285:-0.167385,0.507614,1.55697:-0.184956,0.574216,1.57795:-0.0533381,-0.0389708,1.8396:-0.0988274,-0.410509,1.85645:-0.111053,-0.684308,1.9329:-0.137889,-0.748038,1.86162:0.0648414,-0.0173455,1.84817:0.127778,-0.409538,1.87307:0.126088,-0.745723,1.96917:0.108765,-0.811747,1.90147:-0.000452701,0.0473185,1.83785:-0.0101781,0.111623,1.83746:-0.062362,0.485333,1.83498:-0.0784479,0.6582,1.80362:-0.196767,0.355254,1.81745:-0.350132,0.239296,1.72705:-0.223001,0.306548,1.48096:-0.191372,0.333414,1.4449:0.0782972,0.403954,1.81848:0.228394,0.358992,1.66522:0.059178,0.47951,1.53266:0.0165335,0.529003,1.50436:-0.0585053,-0.0236445,1.83075:-0.099219,-0.405209,1.8519:-0.111407,-0.683377,1.93155:-0.133462,-0.748012,1.85976:0.0723694,-0.00457233,1.84619:0.128905,-0.407196,1.87133:0.126529,-0.744404,1.96889:0.109919,-0.811201,1.90195:-0.00251413,0.0567945,1.83544:-0.012051,0.115911,1.83832:-0.0586419,0.455129,1.85134:-0.0712577,0.621525,1.7865:-0.213405,0.347684,1.84502:-0.395635,0.224624,1.8125:-0.414931,0.252421,1.59864:-0.38575,0.293899,1.54632:0.101889,0.396318,1.85912:0.326766,0.287449,1.82685:0.265322,0.417697,1.61258:0.249635,0.44981,1.58159:-0.0648915,-0.0202591,1.82389:-0.102105,-0.417344,1.84011:-0.113274,-0.681186,1.91751:-0.12459,-0.749195,1.84818:0.0734588,-0.00325402,1.84445:0.130278,-0.411123,1.86568:0.12882,-0.736587,1.95517:0.11682,-0.807383,1.89382:-0.00873396,0.05826,1.82919:-0.0168074,0.115258,1.83836:-0.0604064,0.433507,1.85309:-0.0706063,0.592596,1.75885:-0.224764,0.342686,1.86815:-0.383898,0.18883,1.98184:-0.453008,0.218343,1.75078:-0.446672,0.237922,1.71466:0.124022,0.378991,1.91646:0.219272,0.256562,2.03266:0.301024,0.303699,1.77887:0.307618,0.328954,1.73399:-0.0756645,-0.0240057,1.81237:-0.107044,-0.429981,1.82471:-0.114729,-0.682124,1.89906:-0.116346,-0.752938,1.83199:0.0698218,-0.0100987,1.83533:0.131237,-0.418318,1.8498:0.130483,-0.727256,1.93064:0.124259,-0.802111,1.87778:-0.014405,0.0575301,1.82459:-0.0218227,0.113572,1.83978:-0.0615585,0.42283,1.85455:-0.0712454,0.58216,1.74902:-0.231244,0.340177,1.88171:-0.373795,0.18248,1.99878:-0.433353,0.229036,1.75877:-0.418459,0.25063,1.74017:0.124426,0.373247,1.92804:0.293878,0.220697,2.07417:0.274607,0.306509,1.78426:0.258147,0.327974,1.74827:-0.0830847,-0.0271766,1.80564:-0.110241,-0.436546,1.81703:-0.115726,-0.682761,1.89012:-0.113073,-0.755009,1.82464:0.0662396,-0.0153935,1.82906:0.130104,-0.423084,1.83936:0.130901,-0.722469,1.91931:0.128689,-0.798496,1.8673:-0.0196079,0.0557922,1.82164:-0.0269528,0.111482,1.84239:-0.0628191,0.416444,1.8553:-0.0728109,0.574857,1.74312:-0.23498,0.338915,1.88952:-0.360503,0.179933,2.00147:-0.390424,0.25065,1.76239:-0.397809,0.257074,1.76002:0.116091,0.369977,1.92624:0.234545,0.212804,2.05188:0.234109,0.301288,1.78261:0.225016,0.320882,1.75815:-0.08853,-0.0294951,1.80208:-0.112474,-0.440128,1.81359:-0.116296,-0.682849,1.88612:-0.111508,-0.755798,1.82137:0.0627745,-0.0190284,1.82508:0.128313,-0.426053,1.83436:0.130955,-0.720168,1.91443:0.130725,-0.796573,1.86237:-0.0246973,0.0539719,1.82002:-0.0313829,0.110401,1.84472:-0.0681356,0.417104,1.84983:-0.0806084,0.577878,1.73607:-0.238782,0.34318,1.8884:-0.36538,0.178566,1.9521:-0.330175,0.277881,1.73388:-0.296268,0.324914,1.69404:0.095783,0.371449,1.88977:0.245931,0.244881,1.95424:0.169418,0.302514,1.7399:0.190742,0.341189,1.71869:-0.0933513,-0.0307958,1.80105:-0.116759,-0.443404,1.82185:-0.117129,-0.682843,1.89677:-0.113077,-0.7572,1.83498:0.0584773,-0.0209624,1.82264:0.12212,-0.430695,1.83853:0.125141,-0.740032,1.94256:0.128992,-0.806653,1.87344:-0.0302294,0.0552655,1.8205:-0.0369771,0.113436,1.84656:-0.076607,0.432934,1.83266:-0.0883851,0.590971,1.73164:-0.24342,0.354278,1.88318:-0.386073,0.214553,1.80334:-0.2683,0.303523,1.63527:-0.242066,0.354261,1.62391:0.0971648,0.37918,1.87006:0.266585,0.281181,1.76495:0.0759744,0.345586,1.61362:0.0671491,0.374488,1.6107:-0.102716,-0.0282792,1.80736:-0.121541,-0.442299,1.84855:-0.116437,-0.687932,1.92796:-0.113843,-0.761071,1.86309:0.0545336,-0.0203496,1.82214:0.113694,-0.435037,1.86312:0.120091,-0.759209,1.97311:0.126214,-0.816924,1.8878:-0.0397331,0.0654858,1.82616:-0.0509737,0.133844,1.84662:-0.102425,0.485773,1.79708:-0.0918783,0.628959,1.71816:-0.256126,0.366465,1.84647:-0.374295,0.251984,1.663:-0.21376,0.361959,1.42381:-0.193131,0.405755,1.40678:0.0981379,0.379011,1.83272:0.233216,0.320643,1.60514:0.0422509,0.329739,1.42748:0.0112665,0.355133,1.41725:-0.121143,-0.0130498,1.82955:-0.124716,-0.427581,1.87197:-0.116039,-0.690254,1.94406:-0.112062,-0.761061,1.87498:0.0517256,-0.0124974,1.828:0.108327,-0.431525,1.88229:0.118166,-0.764546,1.98549:0.125909,-0.821037,1.89657:-0.0465101,0.0670998,1.83472:-0.056651,0.136822,1.8486:-0.118179,0.47787,1.80335:-0.0961138,0.637674,1.72462:-0.234576,0.36886,1.81732:-0.303531,0.331216,1.55387:-0.198273,0.391414,1.2811:-0.177588,0.454155,1.26241:0.0764251,0.361522,1.80302:0.123683,0.345959,1.46788:-0.0385254,0.354036,1.25433:-0.0425716,0.37267,1.24502:-0.126677,-0.00748572,1.8414:-0.125443,-0.405862,1.88626:-0.115818,-0.692495,1.95551:-0.112335,-0.761474,1.88388:0.0463553,-0.00618684,1.83744:0.105464,-0.424359,1.89631:0.117133,-0.765822,1.99297:0.124832,-0.822347,1.90302:-0.0521342,0.0608404,1.84246:-0.0624006,0.134285,1.84986:-0.132353,0.479268,1.80638:-0.0987499,0.642408,1.73021:-0.223799,0.367827,1.8034:-0.26755,0.363001,1.53649:-0.216626,0.391636,1.23988:-0.203065,0.432309,1.20818:0.0569892,0.347296,1.79097:0.0665072,0.348847,1.4535:-0.0403438,0.355069,1.19087:-0.0457396,0.361594,1.18592:-0.128473,-0.0065925,1.84874:-0.125896,-0.396756,1.89262:-0.115751,-0.693588,1.96223:-0.112368,-0.761568,1.88962:0.0407295,-0.00520761,1.84331:0.103969,-0.419921,1.90394:0.116661,-0.765559,1.99789:0.124225,-0.822889,1.9079:-0.0553342,0.0537098,1.84674:-0.0667309,0.128623,1.84923:-0.140794,0.4799,1.8086:-0.100447,0.645943,1.73525:-0.217737,0.366012,1.79623:-0.261727,0.361225,1.53402:-0.224762,0.384732,1.23067:-0.211015,0.428874,1.19851:0.0476911,0.339034,1.78634:0.0543059,0.348901,1.45565:-0.0267878,0.31903,1.2123:-0.0484617,0.355906,1.18366:-0.127597,-0.00902635,1.85319:-0.126193,-0.392237,1.89626:-0.115715,-0.694277,1.96638:-0.112359,-0.76171,1.89331:0.0367671,-0.00619457,1.84657:0.103064,-0.418263,1.90806:0.116481,-0.765559,2.00097:0.123814,-0.823595,1.91159:-0.0570359,0.0489953,1.84885:-0.0692142,0.123769,1.84801:-0.140582,0.46756,1.81369:-0.101366,0.647485,1.73957:-0.213679,0.364456,1.79254:-0.259927,0.365362,1.5402:-0.2332,0.382658,1.23327:-0.223628,0.418727,1.19816:0.0433405,0.334129,1.78514:0.0504181,0.348692,1.45745:-0.0317202,0.331706,1.20693:-0.0488628,0.357427,1.18376:-0.125759,-0.0119806,1.85511:-0.125924,-0.389481,1.89714:-0.115695,-0.694765,1.96931:-0.112363,-0.761831,1.89585:0.034063,-0.00724405,1.84846:0.102778,-0.41686,1.91017:0.116645,-0.764591,2.00224:0.123499,-0.824059,1.91419:-0.0573025,0.0476197,1.84891:-0.0688235,0.121123,1.84527:-0.117082,0.449776,1.82161:-0.100921,0.638425,1.74966:-0.21102,0.364227,1.79167:-0.279436,0.382562,1.54081:-0.27646,0.410875,1.23213:-0.261402,0.465617,1.1986:0.0474858,0.333499,1.79009:0.0786113,0.338706,1.47377:0.00373514,0.348461,1.2194:-0.00627199,0.370834,1.20368:-0.123416,-0.0131279,1.85334:-0.124486,-0.387401,1.89107:-0.115714,-0.694654,1.97027:-0.112294,-0.761758,1.89736:0.0326151,-0.00743692,1.84897:0.103418,-0.41429,1.90736:0.117285,-0.760801,1.99931:0.123395,-0.824161,1.91577:-0.0531236,0.0528494,1.84505:-0.063723,0.123559,1.84341:-0.0848175,0.453745,1.8391:-0.097003,0.634989,1.76078:-0.211052,0.37116,1.79797:-0.281595,0.420001,1.56254:-0.248232,0.494804,1.35317:-0.227278,0.528922,1.29448:0.0546953,0.372317,1.8034:0.0871469,0.299563,1.4945:0.071073,0.264282,1.26071:0.0876969,0.266582,1.24318:-0.116782,-0.00879893,1.84434:-0.125399,-0.393411,1.87653:-0.116483,-0.692754,1.96612:-0.113082,-0.76149,1.89687:0.0321142,-0.00406119,1.84612:0.103242,-0.414636,1.89832:0.117462,-0.758235,1.99431:0.123167,-0.824422,1.91683:-0.0510472,0.0236946,1.84012:-0.0576948,0.102512,1.83938:-0.0682014,0.462378,1.8279:-0.083872,0.635565,1.77989:-0.178848,0.373118,1.77466:-0.0207137,0.361949,1.64005:0.174059,0.399101,1.70235:0.239098,0.413416,1.73267:0.060859,0.359754,1.77028:-0.0539911,0.18927,1.71834:-0.278692,0.25163,1.56188:-0.346924,0.278702,1.53865:-0.111219,-0.0245573,1.83726:-0.138492,-0.411126,1.84482:-0.124468,-0.67912,1.92466:-0.124696,-0.747289,1.85609:0.0200959,-0.0281526,1.84607:0.0963167,-0.421769,1.86404:0.11771,-0.737897,1.95664:0.12057,-0.814409,1.9:-0.0505384,0.0131707,1.83885:-0.0552877,0.0931274,1.83737:-0.0602092,0.467645,1.8224:-0.0731816,0.636723,1.7915:-0.164529,0.373305,1.76322:0.0582313,0.360477,1.66341:0.24082,0.368232,1.77464:0.307486,0.381004,1.82232:0.072264,0.350551,1.763:-0.0856388,0.155747,1.76105:-0.297215,0.236866,1.62346:-0.37288,0.269121,1.59778:-0.109041,-0.0333181,1.83418:-0.144983,-0.420293,1.83149:-0.130168,-0.673966,1.9029:-0.128045,-0.741226,1.83401:0.0144702,-0.040315,1.84681:0.0927112,-0.425308,1.84973:0.116989,-0.727969,1.93745:0.120963,-0.806954,1.88732:-0.0509039,0.00757489,1.83859:-0.0546424,0.0882038,1.83628:-0.0574176,0.471922,1.81732:-0.0701463,0.636902,1.7962:-0.157705,0.373618,1.75519:0.08616,0.352629,1.6614:0.232792,0.395788,1.72777:0.315698,0.400124,1.79148:0.0780712,0.338681,1.76862:-0.13808,0.155417,1.76759:-0.339841,0.250273,1.63973:-0.425771,0.284215,1.61615:-0.109173,-0.0386679,1.83351:-0.148296,-0.423991,1.82596:-0.132147,-0.671306,1.89504:-0.126672,-0.737323,1.82546:0.0107761,-0.0471887,1.84778:0.0907061,-0.42703,1.84405:0.116715,-0.724679,1.93112:0.122139,-0.804166,1.88275:-0.0528755,0.00436586,1.83977:-0.0554303,0.0853579,1.83593:-0.0639028,0.479154,1.809:-0.0698735,0.63881,1.79678:-0.154066,0.373912,1.74659:0.0812248,0.359486,1.64913:0.252909,0.376222,1.76737:0.311243,0.378554,1.80844:0.0801692,0.332246,1.77383:-0.157007,0.138604,1.8007:-0.3504,0.240386,1.64024:-0.439445,0.266616,1.61542:-0.111633,-0.0416549,1.83574:-0.153231,-0.425174,1.83323:-0.13363,-0.672572,1.90163:-0.123304,-0.736579,1.82733:0.00687121,-0.0509606,1.84965:0.0849735,-0.431611,1.85486:0.115181,-0.731456,1.94281:0.124498,-0.803232,1.88256:-0.057301,0.00404098,1.84317:-0.0589243,0.0848677,1.83685:-0.0748846,0.488333,1.80084:-0.0754268,0.645271,1.79199:-0.152824,0.374178,1.73753:0.0771314,0.365475,1.63924:0.249683,0.368698,1.75793:0.30849,0.367211,1.7984:0.0778544,0.327877,1.78351:-0.163302,0.141079,1.80338:-0.353424,0.228036,1.63285:-0.445279,0.253115,1.60515:-0.116267,-0.041845,1.84071:-0.157402,-0.42393,1.85398:-0.133889,-0.681283,1.92736:-0.109256,-0.743842,1.85702:0.00142675,-0.0518138,1.85359:0.0786729,-0.434165,1.87304:0.112533,-0.741095,1.95929:0.128484,-0.803908,1.88632:-0.0734111,0.0342998,1.84833:-0.0739667,0.107481,1.83825:-0.0845792,0.491931,1.79656:-0.0825022,0.648437,1.78782:-0.238366,0.382853,1.80935:-0.0215588,0.390587,1.61462:0.179532,0.372698,1.62314:0.260293,0.383564,1.68956:0.0727575,0.328088,1.79382:0.0284521,0.143287,1.69858:-0.229566,0.144631,1.55732:-0.336663,0.149519,1.51907:-0.135223,-0.028348,1.85405:-0.158406,-0.42121,1.87396:-0.133763,-0.689769,1.95107:-0.122576,-0.755211,1.88504:-0.00417266,-0.0427858,1.85456:0.0745349,-0.434998,1.88718:0.110758,-0.747653,1.97115:0.124661,-0.806518,1.89154:-0.0809853,0.04994,1.85066:-0.0821812,0.120135,1.83966:-0.114354,0.491879,1.81495:-0.108481,0.645351,1.78912:-0.272834,0.376599,1.84872:-0.0479031,0.396155,1.6233:0.171732,0.366742,1.59272:0.232661,0.383715,1.63459:0.062172,0.361977,1.82724:0.138683,0.238951,1.68233:0.0751965,0.14166,1.44044:0.0523778,0.130618,1.39353:-0.144336,-0.0227047,1.85744:-0.158099,-0.420186,1.88394:-0.133249,-0.694257,1.96292:-0.126536,-0.760609,1.89718:-0.00497244,-0.030596,1.85598:0.0725026,-0.435893,1.89507:0.110188,-0.751023,1.97817:0.122414,-0.808626,1.89614:-0.0844894,0.0648998,1.85214:-0.0877992,0.131299,1.84729:-0.136162,0.476015,1.85185:-0.140457,0.636622,1.79148:-0.320895,0.364536,1.88597:-0.161585,0.260433,1.73645:-0.183788,0.372433,1.82403:-0.125485,0.393471,1.85903:0.0480796,0.398249,1.85774:0.251669,0.364218,1.68612:0.272585,0.375715,1.42239:0.276222,0.392871,1.3684:-0.149256,-0.0183858,1.85661:-0.155671,-0.419648,1.88899:-0.132389,-0.697228,1.9695:-0.128247,-0.765248,1.90496:0.00142144,-0.00850578,1.85432:0.0722939,-0.436565,1.89956:0.110224,-0.75284,1.98236:0.121075,-0.810691,1.90046:-0.0834062,0.0766043,1.85116:-0.0894414,0.138987,1.85377:-0.146607,0.466298,1.86962:-0.160217,0.632187,1.79269:-0.337657,0.360543,1.90025:-0.371518,0.17626,1.8253:-0.307496,0.0437404,1.69021:-0.25235,-0.0158899,1.64307:0.0400077,0.423402,1.87259:0.253947,0.521859,1.7178:0.301683,0.598421,1.51255:0.349816,0.591974,1.42879:-0.14794,-0.0128002,1.85017:-0.146884,-0.419614,1.88872:-0.131105,-0.698892,1.97308:-0.129092,-0.767485,1.90935:0.0129888,0.0111598,1.84778:0.0759337,-0.436447,1.9014:0.110378,-0.753933,1.98492:0.11987,-0.812512,1.90393:





0 0
原创粉丝点击