[About ES5]What's diff btw these two functions below?

发布于 2022-09-06 01:42:53 字数 814 浏览 10 评论 0

var a1 = function (args) {
};

var a2 = function b (args) {
};

More explicit example about using the lib Three.js:
a1

cljs_exp.core.particleRender = (function cljs_exp$core$particleRender(context){
  context.beginPath();
  ...
  return context.fill();
});

a2

cljs_exp.core.particleRender = (function(context) {
  context.beginPath();
  ... 
  return context.fill();
});

And parse the param a1 or a2, will get different result.

var material_11537 = (new THREE.ParticleCanvasMaterial((function() {
  var obj11536 = {
    "color": cljs_exp.core.getRandomColor.call(null),
    "program": ** * cljs_exp.core.particleRender ** *
  };
  return obj11536;
})()));

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦幻之岛 2022-09-13 01:42:53
a1.name    // a1
a2.name    // b

if cljs_exp.core.particleRender is just a simple function, I think it won't get difference result.


        var material = new THREE.ParticleCanvasMaterial({
            color: 0xe1e1e1,
            program: function(context) {
                context.beginPath();
                context.arc(0, 0, .6, 0, PI2, true);
                context.fill();
            }
        });
        
        
        var material = new THREE.ParticleCanvasMaterial({
            color: 0xe1e1e1,
            program: function somename(context) {
                context.beginPath();
                context.arc(0, 0, .6, 0, PI2, true);
                context.fill();
            }
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文