// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Platform { /// /// Defines the platform-specific interface for a . /// public interface IStreamGeometryImpl : IGeometryImpl { /// /// Clones the geometry. /// /// A cloned geometry. IStreamGeometryImpl Clone(); /// /// Opens the geometry to start defining it. /// /// /// An which can be used to define the geometry. /// IStreamGeometryContextImpl Open(); } }