私は、次のコードしている:red_circle = Circle.Red(new Point(0,0), 10)
Javascriptの「未コンストラクタ」例外
しかし、コードは動作しません。次:
obj = Circle.Red
red_circle = obj(new Point(0,0), 10)
class Circle
constructor: (@center, @radius, @color) ->
@Red: (@center, @radius) ->
new @ center, radius, 'red'
class Point
constructor: (@x, @y) ->
を私はこのような赤い丸を作成することができます私は間違って何をしていますか?