zoukankan      html  css  js  c++  java
  • 唐璜性质的脚本 和朋友分析

    p= 茶壶
    PCross = point
    ---这个脚本是这样解释的,
    --第一次用this.vTime 没有定义肯定报错 多亿返回 【0 0 0 】

      $Point001[4].tension

     $Point001[4].Damping=0.5


    show $Point002[3][1].soxRealtimeSpringCon

    $Point002[3][1].soxRealtimeSpringCon.vTime


      .vpos : point3
      .vVec : point3
      .vTime : float
     ---这个脚本就是说上面是解释。 肯定都有初始值。


    try (

    tTime = timeStamp () / 30 ---显卡时间

    diff = abs (tTime - this.vTime)--有了上面这里面就解释清楚了
    print this.vTime

    if diff >= 1 then (

    this.vTime = tTime

    tVec = (P.pos - this.vPos) * PCross.Tension --PCross.Tension 是0.5

    --tVec=(茶壶的位置 - 系统设定的位置)*0.5 ---几何意义就是 中间有一段距离。

    tPos = this.vPos + tVec + this.vVec
     
     --tPos= 系统设定的位置+ 中间一段距离+ 开始的设置。

    this.vPos = tPos ---替换变量

    this.vVec = (tVec + this.vVec) * (1.0 - PCross.Damping) --PCross.Damping 是0.2 ---替换变量


    tPos ---返回的pos

    )

    else this.vPos---所以这个应该是个初始值。

    ) catch [0, 0, 0]

  • 相关阅读:
    报错apachectl restart
    报错apachectl -t
    LAMP 1.6 Discuz安装
    LAMP 1.4 PHP编译安装
    LAMP 1.2 Apache编译安装
    java时间操作
    URL参数中文乱码解决
    python | mongodb 常用命令
    python | Linux的上的MongoDB的安装与卸载
    python | 对 Flask 蓝图(Blueprint)的理解
  • 原文地址:https://www.cnblogs.com/gaitian00/p/2196707.html
Copyright © 2011-2022 走看看