コード例 #1
0
ファイル: Preview3D.xaml.cs プロジェクト: jdauie/cloudae
        public void UpdateStitching(GeometryModel3D stitchingGeometry, Grid<float> stitchingGrid, TileStitchingEdge edge)
        {
            int edgeIndex = (int)edge;
            m_stitchingGeometry[edgeIndex] = stitchingGeometry;
            m_stitchingGrid[edgeIndex] = stitchingGrid;

            m_stitchingHasChanged = true;
        }
コード例 #2
0
        public void UpdateStitching(GeometryModel3D stitchingGeometry, Grid <float> stitchingGrid, TileStitchingEdge edge)
        {
            int edgeIndex = (int)edge;

            m_stitchingGeometry[edgeIndex] = stitchingGeometry;
            m_stitchingGrid[edgeIndex]     = stitchingGrid;

            m_stitchingHasChanged = true;
        }
コード例 #3
0
ファイル: Preview3D.xaml.cs プロジェクト: jdauie/cloudae
 public bool HasStitching(TileStitchingEdge edge)
 {
     int edgeIndex = (int)edge;
     return (m_stitchingGeometry[edgeIndex] != null);
 }
コード例 #4
0
        public bool HasStitching(TileStitchingEdge edge)
        {
            int edgeIndex = (int)edge;

            return(m_stitchingGeometry[edgeIndex] != null);
        }