<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Ovolumeloader]]></title><description><![CDATA[<p dir="auto">Anybody here know how to access the volume grids in a VolumeLoader?</p>
<p dir="auto">Cheers,<br />
Kent</p>
]]></description><link>http://developers.maxon.net/forum/topic/11372/ovolumeloader</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Jul 2026 14:54:16 GMT</lastBuildDate><atom:link href="http://developers.maxon.net/forum/topic/11372.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 23 Feb 2019 20:15:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Ovolumeloader on Tue, 26 Feb 2019 09:28:57 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Sebastian. I did not realize it was a generator. Couldn't find it mentioned in the docs. However I was searching for VolumeLoader in the docs and on here, and I think the official docs searching system doesn't always return the results.</p>
<p dir="auto">Anyway, all good now. Thanks again.</p>
]]></description><link>http://developers.maxon.net/forum/post/57462</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/57462</guid><dc:creator><![CDATA[kbar]]></dc:creator><pubDate>Tue, 26 Feb 2019 09:28:57 GMT</pubDate></item><item><title><![CDATA[Reply to Ovolumeloader on Mon, 25 Feb 2019 11:42:37 GMT]]></title><description><![CDATA[<p dir="auto">Hello,</p>
<p dir="auto">a <a href="https://help.maxon.net/us/#OVOLUMESEQUENCE" target="_blank" rel="noopener noreferrer nofollow ugc">volume loader</a> is just an ordinary generator. This means the stuff it creates is in its cache. You can access the volumes stored in its cache as usual:</p>
<pre><code>if (baseObject-&gt;IsInstanceOf(Ovolumeloader) == false)
  return maxon::IllegalArgumentError(MAXON_SOURCE_LOCATION);

BaseObject* const cache = baseObject-&gt;GetCache();
if (cache == nullptr)
  return maxon::IllegalArgumentError(MAXON_SOURCE_LOCATION);

if (cache-&gt;IsInstanceOf(Ovolume) == false)
  return maxon::UnexpectedError(MAXON_SOURCE_LOCATION);

const VolumeObject* const volumeObject = static_cast&lt;VolumeObject*&gt;(cache);

ApplicationOutput("Volume Object: " + volumeObject-&gt;GetName());
</code></pre>
<p dir="auto">See also <a href="https://developers.maxon.net/docs/cpp/2023_2/page_manual_volumeobject.html" target="_blank" rel="noopener noreferrer nofollow ugc">VolumeObject Manual</a>.</p>
<p dir="auto">best wishes,<br />
Sebastian</p>
]]></description><link>http://developers.maxon.net/forum/post/57423</link><guid isPermaLink="true">http://developers.maxon.net/forum/post/57423</guid><dc:creator><![CDATA[s_bach]]></dc:creator><pubDate>Mon, 25 Feb 2019 11:42:37 GMT</pubDate></item></channel></rss>