|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
//
// This class is used by the StreamGeometry class to generate an inlined,
// flattened geometry stream.
//
using MS.Internal;
using MS.Internal.PresentationCore;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Windows.Threading;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Composition;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Diagnostics;
using SR=MS.Internal.PresentationCore.SR;
using System.Security;
namespace System.Windows.Media
{
/// <summary>
/// CapacityStreamGeometryContext
/// </summary>
internal abstract class CapacityStreamGeometryContext : StreamGeometryContext
{
internal virtual void SetFigureCount(int figureCount) {}
internal virtual void SetSegmentCount(int segmentCount) {}
}
}
|