<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<oembed>
  <author_name>babu_babu_baboo</author_name>
  <author_url>https://blog.hatena.ne.jp/babu_babu_baboo/</author_url>
  <blog_title>babu_babu_babooのゴミ箱</blog_title>
  <blog_url>https://babu-babu-baboo.hateblo.jp/</blog_url>
  <categories>
  </categories>
  <description>ベジェ曲線を理解する その前に線分を式にする。端点(p0, p1)とする。 この式は実際の線分の長さはどうであれ t が０から１の範囲で線分上の任意の点を表せるようにするという意味である。 これをJavaScript で関数にすると以下のようになる。t の変化は 0.01 単位。 function line (p0, p1) { let rst = [ ]; for (let t = 0; t &lt;= 1; t += 0.01) { let pt = (1-t) * p0 + t * p1; rst.push (pt); } return rst; } これは関数の中で変数 t を変化させている…</description>
  <height>190</height>
  <html>&lt;iframe src=&quot;https://hatenablog-parts.com/embed?url=https%3A%2F%2Fbabu-babu-baboo.hateblo.jp%2Fentry%2F2019%2F02%2F27%2F183653&quot; title=&quot;ベジェ曲線を理解する - babu_babu_babooのゴミ箱&quot; class=&quot;embed-card embed-blogcard&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; style=&quot;display: block; width: 100%; height: 190px; max-width: 500px; margin: 10px 0px;&quot;&gt;&lt;/iframe&gt;</html>
  <image_url>https://chart.apis.google.com/chart?cht=tx&amp;chl=L%28t%29%3D%281-t%29P0%20%2B%20tP1%2C%200%20%3C%20t%20%3C%201</image_url>
  <provider_name>Hatena Blog</provider_name>
  <provider_url>https://hatena.blog</provider_url>
  <published>2019-02-27 18:36:53</published>
  <title>ベジェ曲線を理解する</title>
  <type>rich</type>
  <url>https://babu-babu-baboo.hateblo.jp/entry/2019/02/27/183653</url>
  <version>1.0</version>
  <width>100%</width>
</oembed>
