最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript function that works like actionscript's normalize(1) - Stack Overflow

programmeradmin0浏览0评论

I need a formula that returns normalize numbers for xy point - similar to actionscript's normalize() function.

var normal = {x:pt1.x-pt2.x,y:pt1.y-pt2.y};

normal = Normalize(1) // this I do not know how to implement in Javascript

I need a formula that returns normalize numbers for xy point - similar to actionscript's normalize() function.

var normal = {x:pt1.x-pt2.x,y:pt1.y-pt2.y};

normal = Normalize(1) // this I do not know how to implement in Javascript
Share Improve this question edited Aug 28, 2010 at 19:25 Marcel Korpel 21.8k6 gold badges62 silver badges80 bronze badges asked Aug 28, 2010 at 18:59 user433872user433872 511 silver badge3 bronze badges 2
  • 2 Exact duplicate of Javascript function that works like actionscript's normalize(1) ;) – Marcel Korpel Commented Aug 28, 2010 at 19:25
  • What does Normalize do in Actionscript? Is it this: help.adobe./nl_NL/AS3LCR/Flash_10.0/flash/geom/… – Marcel Korpel Commented Aug 28, 2010 at 19:27
Add a ment  | 

4 Answers 4

Reset to default 6

I think the as3 normalize function is just a way to scale a unit vector:

function normalize(point, scale) {
  var norm = Math.sqrt(point.x * point.x + point.y * point.y);
  if (norm != 0) { // as3 return 0,0 for a point of zero length
    point.x = scale * point.x / norm;
    point.y = scale * point.y / norm;
  }
}

This is how it could be written in Actionscript:

function normalize(p:Point,len:Number):Point {
    if((p.x == 0 && p.y == 0) || len == 0) {
        return new Point(0,0);
    } 
    var angle:Number = Math.atan2(p.y,p.x);
    var nx:Number = Math.cos(angle) * len;
    var ny:Number = Math.sin(angle) * len;
    return new Point(nx,ny);
}

So, I guess in JS it could be something like this:

function normalize(p,len) {
    if((p.x == 0 && p.y == 0) || len == 0) {
        return {x:0, y:0};
    }    
    var angle = Math.atan2(p.y,p.x);
    var nx = Math.cos(angle) * len;
    var ny = Math.sin(angle) * len;
    return {x:nx, y:ny};
} 

I also found this that seems to do it.

var len = Math.sqrt(normal.x * normal.x + normal.y * normal.y)
normal.x /= len;
normal.y /= len;

THANK YOU

Port from the AS3 Point Class, parameter is the same as shown in the livedocs (http://help.adobe./en_US/FlashPlatform/reference/actionscript/3/flash/geom/Point.html#normalize() )

Point.prototype.normalize = function(thickness){
  var norm = Math.sqrt(this.x * this.x + this.y * this.y);
  this.x = this.x / norm * thickness;
  this.y = this.y / norm * thickness;
}
发布评论

评论列表(0)

  1. 暂无评论